GET api/Customers
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Customer| Name | Description | Type | Additional information |
|---|---|---|---|
| id | unsigned integer |
None. |
|
| date_created | date |
None. |
|
| date_created_gmt | date |
None. |
|
| date_modified | date |
None. |
|
| date_modified_gmt | date |
None. |
|
| string |
None. |
||
| first_name | string |
None. |
|
| last_name | string |
None. |
|
| role | string |
None. |
|
| username | string |
None. |
|
| is_paying_customer | boolean |
None. |
|
| avatar_url | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"date_created": "2026-03-07T19:19:18.5897103-08:00",
"date_created_gmt": "2026-03-07T19:19:18.5897103-08:00",
"date_modified": "2026-03-07T19:19:18.5897103-08:00",
"date_modified_gmt": "2026-03-07T19:19:18.5897103-08:00",
"email": "sample string 1",
"first_name": "sample string 2",
"last_name": "sample string 3",
"role": "sample string 4",
"username": "sample string 5",
"is_paying_customer": true,
"avatar_url": "sample string 6"
},
{
"id": 1,
"date_created": "2026-03-07T19:19:18.5897103-08:00",
"date_created_gmt": "2026-03-07T19:19:18.5897103-08:00",
"date_modified": "2026-03-07T19:19:18.5897103-08:00",
"date_modified_gmt": "2026-03-07T19:19:18.5897103-08:00",
"email": "sample string 1",
"first_name": "sample string 2",
"last_name": "sample string 3",
"role": "sample string 4",
"username": "sample string 5",
"is_paying_customer": true,
"avatar_url": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<Customer>
<avatar_url>sample string 6</avatar_url>
<date_created>2026-03-07T19:19:18.5897103-08:00</date_created>
<date_created_gmt>2026-03-07T19:19:18.5897103-08:00</date_created_gmt>
<date_modified>2026-03-07T19:19:18.5897103-08:00</date_modified>
<date_modified_gmt>2026-03-07T19:19:18.5897103-08:00</date_modified_gmt>
<email>sample string 1</email>
<first_name>sample string 2</first_name>
<id>1</id>
<is_paying_customer>true</is_paying_customer>
<last_name>sample string 3</last_name>
<role>sample string 4</role>
<username>sample string 5</username>
</Customer>
<Customer>
<avatar_url>sample string 6</avatar_url>
<date_created>2026-03-07T19:19:18.5897103-08:00</date_created>
<date_created_gmt>2026-03-07T19:19:18.5897103-08:00</date_created_gmt>
<date_modified>2026-03-07T19:19:18.5897103-08:00</date_modified>
<date_modified_gmt>2026-03-07T19:19:18.5897103-08:00</date_modified_gmt>
<email>sample string 1</email>
<first_name>sample string 2</first_name>
<id>1</id>
<is_paying_customer>true</is_paying_customer>
<last_name>sample string 3</last_name>
<role>sample string 4</role>
<username>sample string 5</username>
</Customer>
</ArrayOfCustomer>