Get a single customer
GET/v1/customers/:ref
Get a single customer
Request
Path Parameters
ref stringrequired
The unique identifier for the customer
Responses
- 200
- 400
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
The the customer's information
ref stringrequired
Unique identifier for the customer on your system
email stringrequired
The customer's email address
phone string
first_name stringrequired
last_name stringrequired
{
"data": {
"ref": "string",
"email": "string",
"phone": "408-867-5309",
"first_name": "Jane",
"last_name": "Doe"
}
}
Bad request.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "400 Bad Request (Client Error)"
}
Loading...