curl -X GET https://api.swervpay.co/api/v1/bills/categories/{id}/items/{itemId} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
[
{
"amount": 123,
"code": "<string>",
"currency": "<string>",
"fee": 123,
"id": "<string>",
"name": "<string>"
}
]
Get list of bill category list items
curl -X GET https://api.swervpay.co/api/v1/bills/categories/{id}/items/{itemId} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
[
{
"amount": 123,
"code": "<string>",
"currency": "<string>",
"fee": 123,
"id": "<string>",
"name": "<string>"
}
]
curl -X GET https://api.swervpay.co/api/v1/bills/categories/{id}/items/{itemId} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
The response is of type object[]
.
Was this page helpful?