GET
/
collections
/
{id}
/
transactions
curl -X GET https://api.swervpay.co/api/v1/collections/{id}/transactions \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json"
[
  {
    "amount": 123,
    "charges": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "currency": "<string>",
    "id": "<string>",
    "payment_method": "<string>",
    "reference": "<string>",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]
curl -X GET https://api.swervpay.co/api/v1/collections/{id}/transactions \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json"

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

page
integer
limit
integer

Response

200 - application/json
amount
number
charges
number
created_at
string
currency
string
id
string
payment_method
string
reference
string
updated_at
string