POST api/list/negotiators?pageSize={pageSize}&pageNumber={pageNumber}
Negotiators. Processes this list API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageSize |
The page size value supplied with the request. |
integer |
Default value is 20 |
| pageNumber |
The page number value supplied with the request. |
integer |
Default value is 1 |
Body Parameters
The base list filter data contract supplied with the request.
BaseListFilterDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| CustomFilterConfig |
The custom filter config value. |
string |
None. |
| BranchId |
The unique identifier of the related branch resource. |
integer |
None. |
| BranchIds |
The unique identifiers of the related branch resources. |
Collection of integer |
None. |
| EventBranchIds |
The unique identifiers of the related event branch resources. |
Collection of integer |
None. |
| Order |
The order classification. |
ListOrder |
None. |
| SearchTerm |
The search term value. |
string |
None. |
| FilterType |
The filter type value. |
EnumDataContract |
None. |
| ShowDeleted |
Indicates whether show deleted is true. |
boolean |
None. |
| ShowCancelled |
Indicates whether show cancelled is true. |
boolean |
None. |
| OwningTeamId |
The unique identifier of the related owning team resource. |
integer |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
{
"Name": "sample string 1",
"CustomFilterConfig": "sample string 2",
"BranchId": 1,
"BranchIds": [
1,
2
],
"EventBranchIds": [
1,
2
],
"Order": 0,
"SearchTerm": "sample string 3",
"FilterType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"ShowDeleted": true,
"ShowCancelled": true,
"OwningTeamId": 6,
"Id": 7
}
Response Information
Resource Description
The response returned after the operation completes.
PagedCollectionDataContractOfNegotiatorListDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount |
The total count value. |
integer |
None. |
| CurrentCount |
The current count value. |
integer |
None. |
| PageSize |
The page size value. |
integer |
None. |
| PageNumber |
The page number value. |
integer |
None. |
| Collection |
The collection of collection. |
Collection of NegotiatorListDataContract |
None. |
Response Formats
application/json, text/json
{
"TotalCount": 1,
"CurrentCount": 2,
"PageSize": 1,
"PageNumber": 1,
"Collection": [
{
"JobTitle": "sample string 1",
"Title": "sample string 2",
"ContactName": "sample string 3",
"ClaimedTasks": [
1,
2
],
"Biography": "sample string 4",
"EmailAddress": "sample string 5",
"TelephoneNumber": "sample string 6",
"TeamGroupId": 7,
"Id": 8
},
{
"JobTitle": "sample string 1",
"Title": "sample string 2",
"ContactName": "sample string 3",
"ClaimedTasks": [
1,
2
],
"Biography": "sample string 4",
"EmailAddress": "sample string 5",
"TelephoneNumber": "sample string 6",
"TeamGroupId": 7,
"Id": 8
}
]
}