POST api/draftorderv2/placeorder
Request Information
URI Parameters
None.
Body Parameters
PlaceOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| DraftOrderNo | string |
None. |
|
| ClientID | integer |
None. |
|
| PersonID | integer |
None. |
|
| CreatedBy | string |
None. |
|
| Notes | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DraftOrderNo": "sample string 1",
"ClientID": 2,
"PersonID": 3,
"CreatedBy": "sample string 4",
"Notes": "sample string 5"
}
application/xml, text/xml
Sample:
<PlaceOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Modulusv4.Domain"> <ClientID>2</ClientID> <CreatedBy>sample string 4</CreatedBy> <DraftOrderNo>sample string 1</DraftOrderNo> <Notes>sample string 5</Notes> <PersonID>3</PersonID> </PlaceOrder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |