Gets a list of transactions based on specific search parameters within a few seconds. This is an alternative to the Find transactions API call that returns data in JSON, CSV, or XLS format.
Notice
This API call does not contain the project_id
path parameter, so you need to use the API key that is valid in all the company’s projects to set up authorization.
The list of transactions was successfully returned.
Access Denied.
Transaction Not Found.
Unprocessable Entity (You must pass either transaction_id
or external_id
).
[- {
- "transaction": {
- "id": 123456,
- "project": {
- "id": 123456,
- "name": "Test"
}, - "payment_date": "2023-02-11 15:32:46",
- "external_id": "example_external_id_123",
- "status": "done"
}, - "user": {
- "id": 123456,
- "name": "John Smith",
- "email": "email@example.com",
- "country": "BR"
}, - "payment_details": {
- "payment": {
- "currency": "BRL",
- "amount": 7.96
}
}
}
]