POST api/negotiator/statuses

Gets negotiators online / offline status. Processes this negotiator API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

The ids of the negotiators you want to get the status.

NegotiatorStatusDataContract
NameDescriptionTypeAdditional information
NegotiatorIds

The unique identifiers of the related negotiator resources.

Collection of integer

None.

Id

The unique identifier of this resource.

integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "NegotiatorIds": [
    1,
    2
  ],
  "Id": 1
}

Response Information

Resource Description

Negotiator online/ offline statues

Collection of NegotiatorStatusResultDataContract
NameDescriptionTypeAdditional information
Status

The status value.

string

None.

StatusValue

The status value value.

integer

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Status": "sample string 1",
    "StatusValue": 2,
    "Id": 3
  },
  {
    "Status": "sample string 1",
    "StatusValue": 2,
    "Id": 3
  }
]