Update the missing details of a customer
PATCH/v1/customers/:ref
This allows any missing info of the customer to be provided. Any info previously provided will not be overwritten. Please contact support if you need to over write a customer's info.
Request
Path Parameters
ref stringrequired
The unique identifier for the customer
- application/json
Body
Accepts the same details you would normally use to create a customer
object
Responses
- 200
- 422
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"
}
}
Unprocessable
Loading...