Customers
Available endpoints
GET /v1/customers/:id
GET /v1/customers
The customer object
This object represents a customer. You can retrieve it to view customer details and the number of assigned tanks.
Attributes
id string
Unique identifier for the object.
created_at string
ISO for datetime when the object was created
email string
The customer's email address.
is_verified boolean
If customer's email has been verified.
last_seen_at nullable string
ISO for datetime indicates the customer's last activity.
name string
The customer's full name or business name.
phone nullable string
The customer's phone number.
tank_count integer
Number of tanks assigned to the customer.
updated_at string
ISO for datetime indicates when the customer last changed any field.
verified_at nullable string
ISO for datetime when the customer verified their email.
More attributes
object string
String representing the object's type. Objects of the same type share the same value.
Response
{
"id":"382f9b09-aa08-4bc6-97e3-d9039d5b3422",
"object":"customer",
"created_at":"2025-08-13T01:08:44.577Z",
"email":"jdoe@example.com",
"is_verified":true,
"last_seen_at":null,
"name":"John Doe",
"phone":null,
"tank_count":0,
"updated_at":"2025-08-13T01:08:44.577Z",
"verified_at":null
}