POST api/negotiator/create
Create New Negotiator 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 create negotiator command data contract supplied with the request.
CreateNegotiatorCommandDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Initials |
The initials value. |
string |
None. |
| JobTitle |
The job title value. |
string |
None. |
| ContactName |
The contact name value. |
string |
None. |
| Gender |
The gender value. |
EnumDataContract |
None. |
| Title |
The title value. |
string |
None. |
| FirstName |
The first name value. |
string |
None. |
| LegalName |
The legal name value. |
string |
None. |
| LastName |
The last name value. |
string |
None. |
| Password |
The password value. |
string |
None. |
| HomeBranchID |
The unique identifier of the related home branch resource. |
integer |
None. |
| EmailAddress |
The email address value. |
string |
None. |
| Telephone |
The telephone value. |
string |
None. |
| Responsibilities |
The collection of responsibilities. |
Collection of EnumDataContract |
None. |
| Permissions |
The collection of permissions. |
Collection of string |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
{
"Initials": "sample string 1",
"JobTitle": "sample string 2",
"ContactName": "sample string 3",
"Gender": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Title": "sample string 4",
"FirstName": "sample string 5",
"LegalName": "sample string 6",
"LastName": "sample string 7",
"Password": "sample string 8",
"HomeBranchID": 9,
"EmailAddress": "sample string 10",
"Telephone": "sample string 11",
"Responsibilities": [
{
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
{
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
}
],
"Permissions": [
"sample string 1",
"sample string 2"
],
"Id": 12
}
Response Information
Resource Description
The response returned after the operation completes.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version |
The version value. |
Version |
None. |
| Content |
The content value. |
HttpContent |
None. |
| StatusCode |
The status code classification. |
HttpStatusCode |
None. |
| ReasonPhrase |
The reason phrase value. |
string |
None. |
| Headers |
The collection of headers. |
Collection of Object |
None. |
| RequestMessage |
The request message value. |
HttpRequestMessage |
None. |
| IsSuccessStatusCode |
Indicates whether this item is success status code. |
boolean |
None. |