POST api/NetoIntegration/Post
Receive Order Nofication from Neto Web Hook. Set this api URL on 'Neto > Admin > API > Neto api webhook url'.
Request Information
URI Parameters
None.
Body Parameters
Event notification data
Event| Name | Description | Type | Additional information |
|---|---|---|---|
| EventID | integer |
None. |
|
| CurrentTime | string |
None. |
|
| EventType | string |
None. |
|
| Order | Order |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventID": 1,
"CurrentTime": "sample string 2",
"EventType": "sample string 3",
"Order": {
"OrderID": "sample string 1",
"OrderStatus": "sample string 2"
}
}
application/xml, text/xml
Sample:
<Event xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<EventID>1</EventID>
<CurrentTime>sample string 2</CurrentTime>
<EventType>sample string 3</EventType>
<Order>
<OrderID>sample string 1</OrderID>
<OrderStatus>sample string 2</OrderStatus>
</Order>
</Event>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.