POST api/Order/PaymentandOrderStatus
Request Information
URI Parameters
None.
Body Parameters
PaymentPaidModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| payment_status | string |
None. |
|
| payment_date | date |
None. |
|
| delivery_time | date |
None. |
|
| amount | decimal number |
None. |
|
| assignto | integer |
None. |
|
| order_status | string |
None. |
|
| branch_id | integer |
None. |
|
| cust_id | integer |
None. |
|
| odr_id | integer |
None. |
|
| process_by | integer |
None. |
|
| total | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"payment_status": "sample string 2",
"payment_date": "2025-12-18T16:11:53.8939313+05:00",
"delivery_time": "2025-12-18T16:11:53.8939313+05:00",
"amount": 5.0,
"assignto": 6,
"order_status": "sample string 7",
"branch_id": 8,
"cust_id": 9,
"odr_id": 10,
"process_by": 11,
"total": 12.0
}
application/xml, text/xml
Sample:
<PaymentPaidModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpoonRocket.Models"> <cust_id>9</cust_id> <odr_id>10</odr_id> <process_by>11</process_by> <total>12</total> <amount>5</amount> <assignto>6</assignto> <branch_id>8</branch_id> <delivery_time>2025-12-18T16:11:53.8939313+05:00</delivery_time> <id>1</id> <order_status>sample string 7</order_status> <payment_date>2025-12-18T16:11:53.8939313+05:00</payment_date> <payment_status>sample string 2</payment_status> </PaymentPaidModel>
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.