POST api/health_order/post
Request Information
URI Parameters
None.
Body Parameters
health_order| Name | Description | Type | Additional information |
|---|---|---|---|
| order_id | integer |
None. |
|
| user_id | integer |
None. |
|
| order_date | date |
None. |
|
| prod_id | integer |
None. |
|
| quantity | integer |
None. |
|
| order_amount | integer |
None. |
|
| payment_ref_id | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"order_id": 1,
"user_id": 2,
"order_date": "2025-12-10T16:35:09.8922503+00:00",
"prod_id": 4,
"quantity": 5,
"order_amount": 6,
"payment_ref_id": "sample string 7"
}
application/xml, text/xml
Sample:
<health_order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ailt_model"> <order_amount>6</order_amount> <order_date>2025-12-10T16:35:09.8922503+00:00</order_date> <order_id>1</order_id> <payment_ref_id>sample string 7</payment_ref_id> <prod_id>4</prod_id> <quantity>5</quantity> <user_id>2</user_id> </health_order>
multipart/form-data
Sample:
<health_order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ailt_model"><order_amount>6</order_amount><order_date>2025-12-10T16:35:09.8922503+00:00</order_date><order_id>1</order_id><payment_ref_id>sample string 7</payment_ref_id><prod_id>4</prod_id><quantity>5</quantity><user_id>2</user_id></health_order>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml, multipart/form-data
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />