Skip to main content

Create

POST /v1/customers

Create a customer.

Form Data Parameters

email
string
Required

The unqiue email address of the customer.

Example Request
curl -X POST https://api.realmailers.com/v1/customers \
-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
}