Skip to main content

List Authorizations

Request

ENDPOINT
/prepaid/card/(card_key)/authorizations
METHOD
GET
PARAMETERS
from_date, to_date, size, page

QUERY PARAMS

| Field | Type | Description | |-----------------|---------|---------------------- ------------------------------------| | size | int | Number of records to be returned. Default 10. | | page | int | Page on which the search will be carried out. Default 1. | | from_date | date | Desired period start date | | to_date | date | Desired period end date |

Response

STATUS
200
Response Body
{
"pagination": {
"current_page": 1,
"rows_per_page": 10,
"next_page": 2
},
"date": [
{
"authorization_key": "cccbd9e9-863f-44b5-aa05-f6afa555bb74",
"merchant_currency_code": "BRL",
"original_merchant_amount": 25.31,
"billing_currency_code": "BRL",
"original_billing_amount": 25.31,
"merchant_amount": 25.31,
"iof_amount": 0,
"billing_amount": 25.31,
"processing_datetime": "2023-07-24T12:00:00.000Z",
"captured_amount": 25.31,
"authorization_status": "completed"
},
{
"authorization_key": "9a7b2586-7070-4543-99eb-989d9165814e",
"merchant_currency_code": "BRL",
"original_merchant_amount": 65,
"billing_currency_code": "BRL",
"original_billing_amount": 65,
"merchant_amount": 65,
"iof_amount": 0,
"billing_amount": 65,
"processing_datetime": "2023-07-24T13:00:00.000Z",
"captured_amount": 65,
"authorization_status": "completed"
}
]