curl --request GET \
--url https://api-sandbox.y.uno/v1/reports/list \
--header 'X-Organization-Code: <x-organization-code>' \
--header 'private-secret-key: <api-key>' \
--header 'public-api-key: <api-key>'import requests
url = "https://api-sandbox.y.uno/v1/reports/list"
headers = {
"X-Organization-Code": "<x-organization-code>",
"public-api-key": "<api-key>",
"private-secret-key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Organization-Code': '<x-organization-code>',
'public-api-key': '<api-key>',
'private-secret-key': '<api-key>'
}
};
fetch('https://api-sandbox.y.uno/v1/reports/list', 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/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.y.uno/v1/reports/list"
req, _ := http.NewRequest("GET", url, nil)
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>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.y.uno/v1/reports/list")
.header("X-Organization-Code", "<x-organization-code>")
.header("public-api-key", "<api-key>")
.header("private-secret-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/reports/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Organization-Code"] = '<x-organization-code>'
request["public-api-key"] = '<api-key>'
request["private-secret-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "5104911d-5df9-229e-8468-bd41abea1",
"type": "TRANSACTIONS",
"start_date": "2022-05-09T20:46:54.786342Z",
"end_date": "2022-05-09T20:46:54.786342Z",
"merchant_reference_id": "Merchant_report_1234",
"created_at": "2022-05-16T20:46:54.786342Z",
"updated_at": "2022-05-16T20:46:54.786342Z",
"expires_at": "2022-05-16T20:46:54.786342Z",
"status": "SUCCEEDED"
},
{
"id": "5104911d-5df9-229e-8468-bd41abea1",
"type": "SETTLEMENTS",
"start_date": "2022-05-09T20:46:54.786342Z",
"end_date": "2022-05-09T20:46:54.786342Z",
"merchant_reference_id": "Merchant_report_1234",
"created_at": "2022-05-16T20:46:54.786342Z",
"updated_at": "2022-05-16T20:46:54.786342Z",
"expires_at": "2022-05-16T20:46:54.786342Z",
"status": "DOWNLOADED"
}
]{
"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."
]
}List All Reports
curl --request GET \
--url https://api-sandbox.y.uno/v1/reports/list \
--header 'X-Organization-Code: <x-organization-code>' \
--header 'private-secret-key: <api-key>' \
--header 'public-api-key: <api-key>'import requests
url = "https://api-sandbox.y.uno/v1/reports/list"
headers = {
"X-Organization-Code": "<x-organization-code>",
"public-api-key": "<api-key>",
"private-secret-key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Organization-Code': '<x-organization-code>',
'public-api-key': '<api-key>',
'private-secret-key': '<api-key>'
}
};
fetch('https://api-sandbox.y.uno/v1/reports/list', 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/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.y.uno/v1/reports/list"
req, _ := http.NewRequest("GET", url, nil)
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>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.y.uno/v1/reports/list")
.header("X-Organization-Code", "<x-organization-code>")
.header("public-api-key", "<api-key>")
.header("private-secret-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.y.uno/v1/reports/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Organization-Code"] = '<x-organization-code>'
request["public-api-key"] = '<api-key>'
request["private-secret-key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "5104911d-5df9-229e-8468-bd41abea1",
"type": "TRANSACTIONS",
"start_date": "2022-05-09T20:46:54.786342Z",
"end_date": "2022-05-09T20:46:54.786342Z",
"merchant_reference_id": "Merchant_report_1234",
"created_at": "2022-05-16T20:46:54.786342Z",
"updated_at": "2022-05-16T20:46:54.786342Z",
"expires_at": "2022-05-16T20:46:54.786342Z",
"status": "SUCCEEDED"
},
{
"id": "5104911d-5df9-229e-8468-bd41abea1",
"type": "SETTLEMENTS",
"start_date": "2022-05-09T20:46:54.786342Z",
"end_date": "2022-05-09T20:46:54.786342Z",
"merchant_reference_id": "Merchant_report_1234",
"created_at": "2022-05-16T20:46:54.786342Z",
"updated_at": "2022-05-16T20:46:54.786342Z",
"expires_at": "2022-05-16T20:46:54.786342Z",
"status": "DOWNLOADED"
}
]{
"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."
]
}Authorizations
Headers
Organization code associated to the request.
Query Parameters
The unique identifier of the account.To request the creation of a report for all accounts, don't send this parameter. Otherwise indicate all the account_id you want to include (MAX 64; MIN 36).
Limit of reports to retrieve. Default 1 and maximum 99 (MAX 2; MIN 1).
Reports start page. Default 1 and maximum 10 (MAX 2; MIN 1).
Reports created after and equal this date (ISO 8601 MAX 27; MIN 27).
Reports created before and equal this date (ISO 8601 MAX 27; MIN 27).
Response
200
"5104911d-5df9-229e-8468-bd41abea1"
"TRANSACTIONS"
"2022-05-09T20:46:54.786342Z"
"2022-05-09T20:46:54.786342Z"
"Merchant_report_1234"
"2022-05-16T20:46:54.786342Z"
"2022-05-16T20:46:54.786342Z"
"2022-05-16T20:46:54.786342Z"
"SUCCEEDED"
Was this page helpful?