Retornar Transações

Retorna um array de objetos com as transações do parceiro.

GET/v1/transactions

Exemplos#

Request
curl GET https://usendpay.marlim.co/v1/transactions
--H "Content-Type": "application/json"
--H "api_key": "api_key_value"
--data-raw '{}'
Response
[
{
"status": "paid",
"authorization_code": "123456",
"nsu": 11122233,
"date_created": "1977-05-25T00:00:00.000Z",
"date_updated": "1977-05-25T00:00:00.000Z",
"original_amount": 1000,
"amount": 5000,
"authorized_amount": 5000,
"paid_amount": 5000,
"installments": 3,
"id": 11122233,
"customer": {
"external_id": "12345678900",
"country": "us",
"name": "Luke Skywalker",
"email": "luke@jedimaster.sw",
"phone_number": "+18007770133",
"document": "12345678900",
"address": {
"street": "713 Sunset Ave",
"neighborhood": "East Modesto",
"city": "Modesto",
"state": "CA",
"zipcode": "95351",
"country": "us"
}
},
"card": {
"id": "card_chewbacca1234JabbaTheHutt",
"brand": "visa",
"holder_name": "Luke Skywalker",
"last_digits": "444"
},
"exchangerate_value": "5.000"
}
]