GET v1/ShopOwners/{shopOwnerId}/Customers?fromDateChanged={fromDateChanged}&untilDateChanged={untilDateChanged}&pageSize={pageSize}&pageNumber={pageNumber}&isActive={isActive}
Get a list with all Customers for specified Shop owner.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| shopOwnerId |
The id of the Shop owner. |
integer |
Required. |
| fromDateChanged |
Optionally specify a from date for changed Customers. The date part must be specified, using following format: yyyy-MM-dd. Optionally the time can also be specified, use following format: yyyy-MM-dd HH:mm:ss |
date |
Is Optional. Default value is (null). |
| untilDateChanged |
Optionally specify a until date for changed Customers. The date part must be specified, using following format: yyyy-MM-dd. Optionally the time can also be specified, use following format: yyyy-MM-dd HH:mm:ss |
date |
Is Optional. Default value is (null). |
| pageSize |
The max number of items returned. Default this value is 1000. |
integer |
Is Optional. Default value is 1000. |
| pageNumber |
The page to return. Default page 1 will be returned. |
integer |
Is Optional. Default value is 1. |
| isActive |
If set, filter on whether customer is active or not |
boolean |
Is Optional. Default value is (null). |
Body Parameters
None.
Response Information
Resource Description
A list of the ContactPersonBasicInfo objects.
Collection of ContactPersonBasicInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
Required |
| FullName |
Gets or sets the full name. |
string |
Max length: 100 |
| CompanyName |
Gets or sets the name of the company. |
string |
Max length: 100 |
|
Gets or sets the e mail. |
string |
Max length: 200 |
|
| ContactReference |
Gets or sets the contact reference. |
string |
None. |
| ChangedTimestamp |
The time data was changed. |
date |
None. |
| IsActive |
Indicates whether customer is active or not |
boolean |
None. |
Response Formats
application/json, text/json
[
{
"Id": 1,
"FullName": "sample string 2",
"CompanyName": "sample string 3",
"EMail": "sample string 4",
"ContactReference": "sample string 5",
"ChangedTimestamp": "2026-01-11T16:16:35.1632288+01:00",
"IsActive": true
},
{
"Id": 1,
"FullName": "sample string 2",
"CompanyName": "sample string 3",
"EMail": "sample string 4",
"ContactReference": "sample string 5",
"ChangedTimestamp": "2026-01-11T16:16:35.1632288+01:00",
"IsActive": true
}
]
application/xml, text/xml
<ArrayOfContactPersonBasicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ContactPersonBasicInfo>
<Id>1</Id>
<FullName>sample string 2</FullName>
<CompanyName>sample string 3</CompanyName>
<EMail>sample string 4</EMail>
<ContactReference>sample string 5</ContactReference>
<ChangedTimestamp>2026-01-11T16:16:35.1632288+01:00</ChangedTimestamp>
<IsActive>true</IsActive>
</ContactPersonBasicInfo>
<ContactPersonBasicInfo>
<Id>1</Id>
<FullName>sample string 2</FullName>
<CompanyName>sample string 3</CompanyName>
<EMail>sample string 4</EMail>
<ContactReference>sample string 5</ContactReference>
<ChangedTimestamp>2026-01-11T16:16:35.1632288+01:00</ChangedTimestamp>
<IsActive>true</IsActive>
</ContactPersonBasicInfo>
</ArrayOfContactPersonBasicInfo>