GET api/negotiator/my/responsibilities
Gets a list of the logged in users responsibilities Processes this negotiator API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
NegotiatorResponsibilitiesDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| NegotiatorId |
The unique identifier of the related negotiator resource. |
integer |
None. |
| Responsibilities |
The collection of responsibilities. |
Collection of EnumDataContract |
None. |
Response Formats
application/json, text/json
Sample:
{
"NegotiatorId": 1,
"Responsibilities": [
{
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
{
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
}
]
}