Transactions
Call the Payments API to request transactions via bank transfer or pix.
GET /v1/transaction/{id}
Request
curl -v --location --request GET 'https://sandbox.smartfastpay.com/v1/transaction/{id}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <Access-Token>' \'
Response
{
"requestId": "a2435636-5f69-447d-8e22-8382f62ef7dd",
"data": {
"id": "744252be-fe0b-4209-838c-93635b157951",
"customer_id": "58f0c005-3b7d-4c75-81f3-93b9a6fee864",
"transaction_id": "b08e3897-6505-4bb4-81a5-6e3a1d29e277",
"amount": "300.00",
"currency": "USD",
"status": "pending",
"type": "payment",
"method": "bank_transfer",
"payment_status": "pending",
"created_at": "2021-11-11T19:08:20.000000Z",
"updated_at": "2021-11-11T19:08:20.000000Z"
}
}
Response details
GET /v1/transactions
Request
# Without parameters
curl -v --location --request GET 'https://sandbox.smartfastpay.com/v1/transactions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer < Access-Token >' \'
# With parameters
curl -v --location --request GET 'https://sandbox.smartfastpay.com/v1/transactions?limit=1&order=id,desc' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer < Access-Token >' \'
Parameters detail
Response
{
"requestId": "a2435636-5f69-447d-8e22-8382f62ef7dd",
"data": [
{
"id": "b2a9a131-ba69-4722-a2de-67062268bc27",
"customer_id": "d9e9557e-11a5-49df-b51b-d513a7f5b348",
"transaction_id": "22dd9e47-97c7-4982-af50-3d3e0782d054",
"amount": "980.00",
"currency": "USD",
"status": "pending",
"type": "payout",
"payout_status": "pending",
"created_at": "2021-11-11T19:08:20.000000Z",
"updated_at": "2021-11-11T19:08:20.000000Z"
},
{
"id": "744252be-fe0b-4209-838c-93635b157951",
"customer_id": "58f0c005-3b7d-4c75-81f3-93b9a6fee864",
"transaction_id": "b08e3897-6505-4bb4-81a5-6e3a1d29e277",
"amount": "300.00",
"currency": "USD",
"status": "pending",
"type": "payment",
"method": "bank_transfer",
"payment_status": "pending",
"created_at": "2021-11-11T19:08:20.000000Z",
"updated_at": "2021-11-11T19:08:20.000000Z"
},
{
"id": "af78bccd-cc66-4e92-8ee6-56b3d6686327",
"customer_id": "d9e9557e-11a5-49df-b51b-d513a7f5b348",
"transaction_id": "22dd9e47-97c7-4982-af50-3d3e0782d054",
"amount": "980.00",
"currency": "USD",
"status": "pending",
"type": "payment",
"method": "pix",
"payment_status": "pending",
"created_at": "2021-11-11T19:08:20.000000Z",
"updated_at": "2021-11-11T19:08:20.000000Z"
}
]
}
Response details
Last updated