POST api/negotiator/statuses

Gets negotiators online / offline status.

Request Information

URI Parameters

None.

Body Parameters

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

Dezrez.Core.DataContracts.External.Api.Negotiators.Query.Get.NegotiatorStatusDataContract
NameDescriptionTypeAdditional information
NegotiatorIds

Collection of integer

None.

Id

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 Dezrez.Core.DataContracts.External.Api.Negotiators.Query.Get.NegotiatorStatusResultDataContract
NameDescriptionTypeAdditional information
Status

string

None.

StatusValue

integer

None.

Id

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
  }
]