Get Customer
GET/account/customer/:email
Retrieves specific customer's details
Retrieves the details of a specific customer associated with your account Use this endpoint to view comprehensive information about a customer, including their email address and any associated profile details, enabling full management of your account's customers.
Request
Path Parameters
email emailrequired
Email of the customer
Responses
- 200
- 400
- 401
- 405
successful operation
- application/json
- Schema
- Example (from schema)
Schema
email stringrequired
firstName string
lastName string
source string
status string
Possible values: [Subscribed, Unsubscribed, Bounced, Inactive, Spam]
birthday string
tags string[]
currency string
country string
province string
city string
address1 string
address2 string
phone string
postalCode string
company string
lastPurchaseOrder string
lastPurchasePrice string
latestOrderId string
lastPurchaseDate string
unsubscribedAt string
This field will be returned if the customer is Unsubscribed. It will be in the ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ).
{
"email": "test@tinyemail.com",
"firstName": "John",
"lastName": "Doe",
"source": "sales_force",
"status": "Subscribed",
"birthday": "2020-01-01",
"tags": [
"string"
],
"currency": "SOS",
"country": "Argentina",
"province": "Massachusetts",
"city": "Burnsville",
"address1": "31641 Candace Locks",
"address2": "Apt. 452",
"phone": "(123) 456-7890",
"postalCode": "87774",
"company": "Bode Inc",
"lastPurchaseOrder": "Super Bike",
"lastPurchasePrice": "3500",
"latestOrderId": "Order#50993961",
"lastPurchaseDate": "2020-01-01",
"unsubscribedAt": "2026-02-11T13:12:29"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Method Not Allowed
Loading...