Retrieve all of the customers from a merchant's store.
Customer Properties
Property | Type | Description |
---|---|---|
id | string | The Rutter ID of the customer. This value is a UUID generated by Rutter that uniquely identifies a customer regardless of platforms. |
first_name | string | First name of this customer |
last_name | string | Last name of this customer |
string | null | Email of the customer. If the platform doesn't provide it, this field would be | |
phone | string | null | Phone number of the customer. If the platform doesn't provide it, this field would be |
orders | object[] | Array of abridged order objects associated with the customer. |
created_at | string | The ISO 8601 timestamp the customer was created. |
updated_at | string | The last ISO 8601 timestamp the customer was updated. |
{
"id": "a021bcc9-319d-4a04-b129-87c66b2c08ed",
"full_name": "Eric Yu",
"first_name": "Eric",
"last_name": "Yu",
"email": "[email protected]",
"phone": "111111111",
"orders": [],
"created_at": "2016-06-23T09:09:34.752Z",
"updated_at": "2016-06-23T09:10:02.798Z",
}