Customers
Get Customer
Customers
Get Customer
Get customer
GET
/
customers
/
{id}
curl -X GET https://api.swervpay.co/api/v1/customers/{id} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
{
"country": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"first_name": "<string>",
"id": "<string>",
"is_blacklisted": true,
"last_name": "<string>",
"middle_name": "<string>",
"phone_number": "<string>",
"status": "<string>",
"tier": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
curl -X GET https://api.swervpay.co/api/v1/customers/{id} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl -X GET https://api.swervpay.co/api/v1/customers/{id} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
{
"country": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"email": "<string>",
"first_name": "<string>",
"id": "<string>",
"is_blacklisted": true,
"last_name": "<string>",
"middle_name": "<string>",
"phone_number": "<string>",
"status": "<string>",
"tier": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}