curl --request POST \
--url https://api-sandbox.y.uno/v1/reports \
--header 'Content-Type: application/json' \
--header 'X-Organization-Code: <x-organization-code>' \
--header 'private-secret-key: <api-key>' \
--header 'public-api-key: <api-key>' \
--data '
{
"type": "PAYMENTS",
"start_date": "2023-07-28T21:09:03.327Z",
"end_date": "2023-07-28T21:09:03.327Z",
"merchant_reference_id": "test_id",
"account_id": "19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf",
"payment_status": "CREATED,READY_TO_PAY,DECLINED",
"payment_sub_status": "READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED",
"payment_method": "ADDI,ACUOTAZ,PIX",
"currency": "ARS,BRL,COP",
"country": "AR,BR,CO",
"transaction_type": "PURCHASE,REFUND,VERIFY",
"transaction_status": "SUCCEEDED,CREATED,EXPIRED",
"updated_at_start": "2023-07-28T21:09:03.327Z",
"updated_at_end": "2023-07-28T21:09:03.327Z",
"columns": "account_code,amount_value,card_category"
}
'import requests
url = "https://api-sandbox.y.uno/v1/reports"
payload = {
"type": "PAYMENTS",
"start_date": "2023-07-28T21:09:03.327Z",
"end_date": "2023-07-28T21:09:03.327Z",
"merchant_reference_id": "test_id",
"account_id": "19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf",
"payment_status": "CREATED,READY_TO_PAY,DECLINED",
"payment_sub_status": "READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED",
"payment_method": "ADDI,ACUOTAZ,PIX",
"currency": "ARS,BRL,COP",
"country": "AR,BR,CO",
"transaction_type": "PURCHASE,REFUND,VERIFY",
"transaction_status": "SUCCEEDED,CREATED,EXPIRED",
"updated_at_start": "2023-07-28T21:09:03.327Z",
"updated_at_end": "2023-07-28T21:09:03.327Z",
"columns": "account_code,amount_value,card_category"
}
headers = {
"X-Organization-Code": "<x-organization-code>",
"public-api-key": "<api-key>",
"private-secret-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Organization-Code': '<x-organization-code>',
'public-api-key': '<api-key>',
'private-secret-key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
type: 'PAYMENTS',
start_date: '2023-07-28T21:09:03.327Z',
end_date: '2023-07-28T21:09:03.327Z',
merchant_reference_id: 'test_id',
account_id: '19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf',
payment_status: 'CREATED,READY_TO_PAY,DECLINED',
payment_sub_status: 'READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED',
payment_method: 'ADDI,ACUOTAZ,PIX',
currency: 'ARS,BRL,COP',
country: 'AR,BR,CO',
transaction_type: 'PURCHASE,REFUND,VERIFY',
transaction_status: 'SUCCEEDED,CREATED,EXPIRED',
updated_at_start: '2023-07-28T21:09:03.327Z',
updated_at_end: '2023-07-28T21:09:03.327Z',
columns: 'account_code,amount_value,card_category'
})
};
fetch('https://api-sandbox.y.uno/v1/reports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.y.uno/v1/reports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'type' => 'PAYMENTS',
'start_date' => '2023-07-28T21:09:03.327Z',
'end_date' => '2023-07-28T21:09:03.327Z',
'merchant_reference_id' => 'test_id',
'account_id' => '19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf',
'payment_status' => 'CREATED,READY_TO_PAY,DECLINED',
'payment_sub_status' => 'READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED',
'payment_method' => 'ADDI,ACUOTAZ,PIX',
'currency' => 'ARS,BRL,COP',
'country' => 'AR,BR,CO',
'transaction_type' => 'PURCHASE,REFUND,VERIFY',
'transaction_status' => 'SUCCEEDED,CREATED,EXPIRED',
'updated_at_start' => '2023-07-28T21:09:03.327Z',
'updated_at_end' => '2023-07-28T21:09:03.327Z',
'columns' => 'account_code,amount_value,card_category'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Organization-Code: <x-organization-code>",
"private-secret-key: <api-key>",
"public-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.y.uno/v1/reports"
payload := strings.NewReader("{\n \"type\": \"PAYMENTS\",\n \"start_date\": \"2023-07-28T21:09:03.327Z\",\n \"end_date\": \"2023-07-28T21:09:03.327Z\",\n \"merchant_reference_id\": \"test_id\",\n \"account_id\": \"19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf\",\n \"payment_status\": \"CREATED,READY_TO_PAY,DECLINED\",\n \"payment_sub_status\": \"READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED\",\n \"payment_method\": \"ADDI,ACUOTAZ,PIX\",\n \"currency\": \"ARS,BRL,COP\",\n \"country\": \"AR,BR,CO\",\n \"transaction_type\": \"PURCHASE,REFUND,VERIFY\",\n \"transaction_status\": \"SUCCEEDED,CREATED,EXPIRED\",\n \"updated_at_start\": \"2023-07-28T21:09:03.327Z\",\n \"updated_at_end\": \"2023-07-28T21:09:03.327Z\",\n \"columns\": \"account_code,amount_value,card_category\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Organization-Code", "<x-organization-code>")
req.Header.Add("public-api-key", "<api-key>")
req.Header.Add("private-secret-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-sandbox.y.uno/v1/reports")
.header("X-Organization-Code", "<x-organization-code>")
.header("public-api-key", "<api-key>")
.header("private-secret-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"type\": \"PAYMENTS\",\n \"start_date\": \"2023-07-28T21:09:03.327Z\",\n \"end_date\": \"2023-07-28T21:09:03.327Z\",\n \"merchant_reference_id\": \"test_id\",\n \"account_id\": \"19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf\",\n \"payment_status\": \"CREATED,READY_TO_PAY,DECLINED\",\n \"payment_sub_status\": \"READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED\",\n \"payment_method\": \"ADDI,ACUOTAZ,PIX\",\n \"currency\": \"ARS,BRL,COP\",\n \"country\": \"AR,BR,CO\",\n \"transaction_type\": \"PURCHASE,REFUND,VERIFY\",\n \"transaction_status\": \"SUCCEEDED,CREATED,EXPIRED\",\n \"updated_at_start\": \"2023-07-28T21:09:03.327Z\",\n \"updated_at_end\": \"2023-07-28T21:09:03.327Z\",\n \"columns\": \"account_code,amount_value,card_category\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/reports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Organization-Code"] = '<x-organization-code>'
request["public-api-key"] = '<api-key>'
request["private-secret-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"type\": \"PAYMENTS\",\n \"start_date\": \"2023-07-28T21:09:03.327Z\",\n \"end_date\": \"2023-07-28T21:09:03.327Z\",\n \"merchant_reference_id\": \"test_id\",\n \"account_id\": \"19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf\",\n \"payment_status\": \"CREATED,READY_TO_PAY,DECLINED\",\n \"payment_sub_status\": \"READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED\",\n \"payment_method\": \"ADDI,ACUOTAZ,PIX\",\n \"currency\": \"ARS,BRL,COP\",\n \"country\": \"AR,BR,CO\",\n \"transaction_type\": \"PURCHASE,REFUND,VERIFY\",\n \"transaction_status\": \"SUCCEEDED,CREATED,EXPIRED\",\n \"updated_at_start\": \"2023-07-28T21:09:03.327Z\",\n \"updated_at_end\": \"2023-07-28T21:09:03.327Z\",\n \"columns\": \"account_code,amount_value,card_category\"\n}"
response = http.request(request)
puts response.read_body{
"id": "6d905149-b388-4522-8c0a-759fed1f39da",
"type": "PAYMENTS",
"start_date": "2023-07-01 00:00:00 +0000 UTC",
"end_date": "2023-07-12 00:00:00 +0000 UTC",
"merchant_reference_id": "payments_1",
"created_at": "2023-07-12 20:10:30.311048496 +0000 UTC",
"updated_at": "2023-07-12 20:10:30.311048496 +0000 UTC",
"expires_at": "",
"status": "IN_PROCESS"
}{
"code": "INVALID_REQUEST",
"messages": [
"Invalid request"
]
}{
"code": "INVALID_CREDENTIALS",
"messages": [
"Invalid credentials"
]
}{
"code": "AUTHORIZATION_REQUIRED",
"messages": [
"The merchant has no authorization to use this API."
]
}Create a Report
curl --request POST \
--url https://api-sandbox.y.uno/v1/reports \
--header 'Content-Type: application/json' \
--header 'X-Organization-Code: <x-organization-code>' \
--header 'private-secret-key: <api-key>' \
--header 'public-api-key: <api-key>' \
--data '
{
"type": "PAYMENTS",
"start_date": "2023-07-28T21:09:03.327Z",
"end_date": "2023-07-28T21:09:03.327Z",
"merchant_reference_id": "test_id",
"account_id": "19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf",
"payment_status": "CREATED,READY_TO_PAY,DECLINED",
"payment_sub_status": "READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED",
"payment_method": "ADDI,ACUOTAZ,PIX",
"currency": "ARS,BRL,COP",
"country": "AR,BR,CO",
"transaction_type": "PURCHASE,REFUND,VERIFY",
"transaction_status": "SUCCEEDED,CREATED,EXPIRED",
"updated_at_start": "2023-07-28T21:09:03.327Z",
"updated_at_end": "2023-07-28T21:09:03.327Z",
"columns": "account_code,amount_value,card_category"
}
'import requests
url = "https://api-sandbox.y.uno/v1/reports"
payload = {
"type": "PAYMENTS",
"start_date": "2023-07-28T21:09:03.327Z",
"end_date": "2023-07-28T21:09:03.327Z",
"merchant_reference_id": "test_id",
"account_id": "19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf",
"payment_status": "CREATED,READY_TO_PAY,DECLINED",
"payment_sub_status": "READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED",
"payment_method": "ADDI,ACUOTAZ,PIX",
"currency": "ARS,BRL,COP",
"country": "AR,BR,CO",
"transaction_type": "PURCHASE,REFUND,VERIFY",
"transaction_status": "SUCCEEDED,CREATED,EXPIRED",
"updated_at_start": "2023-07-28T21:09:03.327Z",
"updated_at_end": "2023-07-28T21:09:03.327Z",
"columns": "account_code,amount_value,card_category"
}
headers = {
"X-Organization-Code": "<x-organization-code>",
"public-api-key": "<api-key>",
"private-secret-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Organization-Code': '<x-organization-code>',
'public-api-key': '<api-key>',
'private-secret-key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
type: 'PAYMENTS',
start_date: '2023-07-28T21:09:03.327Z',
end_date: '2023-07-28T21:09:03.327Z',
merchant_reference_id: 'test_id',
account_id: '19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf',
payment_status: 'CREATED,READY_TO_PAY,DECLINED',
payment_sub_status: 'READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED',
payment_method: 'ADDI,ACUOTAZ,PIX',
currency: 'ARS,BRL,COP',
country: 'AR,BR,CO',
transaction_type: 'PURCHASE,REFUND,VERIFY',
transaction_status: 'SUCCEEDED,CREATED,EXPIRED',
updated_at_start: '2023-07-28T21:09:03.327Z',
updated_at_end: '2023-07-28T21:09:03.327Z',
columns: 'account_code,amount_value,card_category'
})
};
fetch('https://api-sandbox.y.uno/v1/reports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.y.uno/v1/reports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'type' => 'PAYMENTS',
'start_date' => '2023-07-28T21:09:03.327Z',
'end_date' => '2023-07-28T21:09:03.327Z',
'merchant_reference_id' => 'test_id',
'account_id' => '19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf',
'payment_status' => 'CREATED,READY_TO_PAY,DECLINED',
'payment_sub_status' => 'READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED',
'payment_method' => 'ADDI,ACUOTAZ,PIX',
'currency' => 'ARS,BRL,COP',
'country' => 'AR,BR,CO',
'transaction_type' => 'PURCHASE,REFUND,VERIFY',
'transaction_status' => 'SUCCEEDED,CREATED,EXPIRED',
'updated_at_start' => '2023-07-28T21:09:03.327Z',
'updated_at_end' => '2023-07-28T21:09:03.327Z',
'columns' => 'account_code,amount_value,card_category'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Organization-Code: <x-organization-code>",
"private-secret-key: <api-key>",
"public-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.y.uno/v1/reports"
payload := strings.NewReader("{\n \"type\": \"PAYMENTS\",\n \"start_date\": \"2023-07-28T21:09:03.327Z\",\n \"end_date\": \"2023-07-28T21:09:03.327Z\",\n \"merchant_reference_id\": \"test_id\",\n \"account_id\": \"19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf\",\n \"payment_status\": \"CREATED,READY_TO_PAY,DECLINED\",\n \"payment_sub_status\": \"READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED\",\n \"payment_method\": \"ADDI,ACUOTAZ,PIX\",\n \"currency\": \"ARS,BRL,COP\",\n \"country\": \"AR,BR,CO\",\n \"transaction_type\": \"PURCHASE,REFUND,VERIFY\",\n \"transaction_status\": \"SUCCEEDED,CREATED,EXPIRED\",\n \"updated_at_start\": \"2023-07-28T21:09:03.327Z\",\n \"updated_at_end\": \"2023-07-28T21:09:03.327Z\",\n \"columns\": \"account_code,amount_value,card_category\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Organization-Code", "<x-organization-code>")
req.Header.Add("public-api-key", "<api-key>")
req.Header.Add("private-secret-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-sandbox.y.uno/v1/reports")
.header("X-Organization-Code", "<x-organization-code>")
.header("public-api-key", "<api-key>")
.header("private-secret-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"type\": \"PAYMENTS\",\n \"start_date\": \"2023-07-28T21:09:03.327Z\",\n \"end_date\": \"2023-07-28T21:09:03.327Z\",\n \"merchant_reference_id\": \"test_id\",\n \"account_id\": \"19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf\",\n \"payment_status\": \"CREATED,READY_TO_PAY,DECLINED\",\n \"payment_sub_status\": \"READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED\",\n \"payment_method\": \"ADDI,ACUOTAZ,PIX\",\n \"currency\": \"ARS,BRL,COP\",\n \"country\": \"AR,BR,CO\",\n \"transaction_type\": \"PURCHASE,REFUND,VERIFY\",\n \"transaction_status\": \"SUCCEEDED,CREATED,EXPIRED\",\n \"updated_at_start\": \"2023-07-28T21:09:03.327Z\",\n \"updated_at_end\": \"2023-07-28T21:09:03.327Z\",\n \"columns\": \"account_code,amount_value,card_category\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/reports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Organization-Code"] = '<x-organization-code>'
request["public-api-key"] = '<api-key>'
request["private-secret-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"type\": \"PAYMENTS\",\n \"start_date\": \"2023-07-28T21:09:03.327Z\",\n \"end_date\": \"2023-07-28T21:09:03.327Z\",\n \"merchant_reference_id\": \"test_id\",\n \"account_id\": \"19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf\",\n \"payment_status\": \"CREATED,READY_TO_PAY,DECLINED\",\n \"payment_sub_status\": \"READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED\",\n \"payment_method\": \"ADDI,ACUOTAZ,PIX\",\n \"currency\": \"ARS,BRL,COP\",\n \"country\": \"AR,BR,CO\",\n \"transaction_type\": \"PURCHASE,REFUND,VERIFY\",\n \"transaction_status\": \"SUCCEEDED,CREATED,EXPIRED\",\n \"updated_at_start\": \"2023-07-28T21:09:03.327Z\",\n \"updated_at_end\": \"2023-07-28T21:09:03.327Z\",\n \"columns\": \"account_code,amount_value,card_category\"\n}"
response = http.request(request)
puts response.read_body{
"id": "6d905149-b388-4522-8c0a-759fed1f39da",
"type": "PAYMENTS",
"start_date": "2023-07-01 00:00:00 +0000 UTC",
"end_date": "2023-07-12 00:00:00 +0000 UTC",
"merchant_reference_id": "payments_1",
"created_at": "2023-07-12 20:10:30.311048496 +0000 UTC",
"updated_at": "2023-07-12 20:10:30.311048496 +0000 UTC",
"expires_at": "",
"status": "IN_PROCESS"
}{
"code": "INVALID_REQUEST",
"messages": [
"Invalid request"
]
}{
"code": "INVALID_CREDENTIALS",
"messages": [
"Invalid credentials"
]
}{
"code": "AUTHORIZATION_REQUIRED",
"messages": [
"The merchant has no authorization to use this API."
]
}- The
statusof the report generation. - A report
id.
Authorizations
Headers
Organization code associated to the request.
Body
The type of the report to run (MAX 255; MIN 3).
PAYOUTS, PAYMENTS, TRANSACTIONS, SETTLEMENTS, TRANSACTION_RECONCILIATION, COMMUNICATIONS The user identifier to associate with the report request.
The unique identifier of the report at the merchant side (MAX 255; MIN 3).
Account identifier(s). Omit to include all accounts. For multiple accounts, send a comma-separated list.
Example: 19d28762-c714-4fb0-9ef6-4e1953ed33tf, 91d82267-c714-4fb0-9ef6-4e1953ed33tf.
Filters the Settlements report by acquirer. Accepts a single value (case-insensitive; conventionally uppercase).
Example: BAC_CREDOMATIC
The status of the payment (MAX 255; MIN 3; Payment status). Don't send this parameter to request the creation of a report for all payment status. Otherwise, indicate all the status you want to include.
Example: CREATED,READY_TO_PAY,DECLINED
The substatus of the payment (MAX 255; MIN 3; Payment substatus). Don't send this parameter to request the creation of a report for all payment sub status. Otherwise, indicate all the sub status you want to include.
Example: READY_TO_PAY,PENDING_FRAUD_REVIEW,EXPIRED
The type of payment method selected by the customer (MAX 255; MIN 3; Payment methods). Don't send this parameter to request the creation of a report for all payment methods. Otherwise, indicate all the methods you want to include.
Example: ADDI,ACUOTAZ,PIX
The country where the transaction must be processed (MAX 2; MIN 2; ISO 3166-1). Don't send this parameter to request the creation of a report for all countries. Otherwise, indicate all countries you want to include.
Example: AR,BR,CO
The transaction type (MAX 255; MIN 3; Transaction types). Don't send this parameter to request the creation of a report for all transaction types. Otherwise, indicate all transaction types you want to include.
Example: PURCHASE,REFUND,VERIFY
The status of the transaction (MAX 255; MIN 3; Transaction status). Don't send this parameter to request the creation of a report for all transaction status. Otherwise, indicate all transaction status you want to include.
Example: SUCCEEDED,CREATED,EXPIRED
Columns to include (only for Payment or Transaction reports). See available fields in Report Fields.
Example: account_code,amount_value,card_category
Columns to include (only if the merchant is exporting metadata fields). This option is exclusive to Transaction and Settlement reports.
Response
201
"6d905149-b388-4522-8c0a-759fed1f39da"
"PAYMENTS"
"2023-07-01 00:00:00 +0000 UTC"
"2023-07-12 00:00:00 +0000 UTC"
"payments_1"
"2023-07-12 20:10:30.311048496 +0000 UTC"
"2023-07-12 20:10:30.311048496 +0000 UTC"
""
"IN_PROCESS"
Was this page helpful?