GET api/products/{productId}/customers?page={page}&pageSize={pageSize}&orderBy={orderBy}&ascending={ascending}
List sharing companies who can make order of the shared product
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| productId |
Product ID |
integer |
Required |
| page |
Page number |
integer |
Default value is 1 |
| pageSize |
Numbe of records a page can hold |
integer |
Default value is 50 |
| orderBy |
Order By |
string |
Default value is CreatedUtc |
| ascending |
Asc/Desc |
boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
PagedResultSetOfProductCustomerDtoNone.
Response Formats
application/json, text/json
Sample:
{
"metadata": {
"pageNumber": 1,
"pageSize": 2,
"totalNumberOfPages": 3,
"totalNumberOfRecords": 4,
"nextPageUrl": "sample string 5"
},
"results": [
{
"id": 1,
"name": "sample string 2",
"email": "sample string 3",
"logo": "sample string 4",
"becameCustomerAt": "2026-01-12T15:47:13.1790128+00:00"
},
{
"id": 1,
"name": "sample string 2",
"email": "sample string 3",
"logo": "sample string 4",
"becameCustomerAt": "2026-01-12T15:47:13.1790128+00:00"
}
]
}