Bills
Validate customer
Bills
Validate customer
Validate bill with customer
POST
/
bills
/
validate
curl -X GET https://api.swervpay.co/api/v1/bills/validate \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
-d '{
"biller_id": "<BILLER_ID>",
"customer_id": "<CUSTOMER_ID>",
"category": "<CATEGORY>"
}'
This response does not have an example.
curl -X GET https://api.swervpay.co/api/v1/bills/validate \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
-d '{
"biller_id": "<BILLER_ID>",
"customer_id": "<CUSTOMER_ID>",
"category": "<CATEGORY>"
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
OK
Was this page helpful?
curl -X GET https://api.swervpay.co/api/v1/bills/validate \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
-d '{
"biller_id": "<BILLER_ID>",
"customer_id": "<CUSTOMER_ID>",
"category": "<CATEGORY>"
}'
This response does not have an example.