Update
PUT /v1/customers/{id}
Updates a customer.
Path Parameters
id
integer
Required
The id of the customer.
Form Data Parameters
email
string
Optional
The unqiue email address of the customer.
Example Request
curl -X PUT https://api.realmailers.com/v1/customers/{id} \
-H 'Authorization: Bearer YOUR_API_KEY' \
-F "email"="user@example.com"
Response Schema
{
created_at: Timestamp(ISO8601)
updated_at: Timestamp(ISO8601)
email: String
id: Number
}