POST api/cart/orderplaced
Request Information
URI Parameters
None.
Body Parameters
EntityOrderPlaced| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | integer |
None. |
|
| LocationId | integer |
None. |
|
| PCode | string |
None. |
|
| UseGSTInvoice | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderId": 1,
"LocationId": 2,
"PCode": "sample string 3",
"UseGSTInvoice": true
}
application/xml, text/xml
Sample:
<EntityOrderPlaced xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GM.Business.Entity"> <LocationId>2</LocationId> <OrderId>1</OrderId> <PCode>sample string 3</PCode> <UseGSTInvoice>true</UseGSTInvoice> </EntityOrderPlaced>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.