GET api/negotiator/getbasic?teamId={teamId}&pageSize={pageSize}&pageNumber={pageNumber}
Get negotiators online / offline status.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
teamId |
(optional) teamId to get negotiators for. |
integer |
None. |
pageSize | integer |
Default value is 20 |
|
pageNumber | integer |
Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
All negotiator for the user
PagedCollectionDataContractOfDezrez.Core.DataContracts.External.Api.Negotiators.Query.Get.BasicNegotiatorDataContractName | Description | Type | Additional information |
---|---|---|---|
TotalCount | integer |
None. |
|
CurrentCount | integer |
None. |
|
PageSize | integer |
None. |
|
PageNumber | integer |
None. |
|
Collection | Collection of Dezrez.Core.DataContracts.External.Api.Negotiators.Query.Get.BasicNegotiatorDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalCount": 1, "CurrentCount": 2, "PageSize": 1, "PageNumber": 1, "Collection": [ { "Initials": "sample string 1", "Title": "sample string 2", "FirstName": "sample string 3", "LastName": "sample string 4", "ContactName": "sample string 5", "JobTitle": "sample string 6", "Email": "sample string 7", "TeamGroupId": 8, "Id": 9 }, { "Initials": "sample string 1", "Title": "sample string 2", "FirstName": "sample string 3", "LastName": "sample string 4", "ContactName": "sample string 5", "JobTitle": "sample string 6", "Email": "sample string 7", "TeamGroupId": 8, "Id": 9 } ] }