Get a single Order
This endpoint is deprecated.
POST
/api/RPC.common.Api.Po.getOneData?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
id | Integer | Order ID |
numrequired | String | Purchase order # |
Request example
Search One Po By Num:
{
"data" : [
{
"num" : "PO10000287"
}
]
}
Search One Po By Id:
{
"data" : [
{
"id" : 1189472197
}
]
}cURL
Search One Po By Num:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "num" : "PO10000287" } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Po.getOneData?token=<TOKEN>"
Search One Po By Id:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "id" : 1189472197 } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Po.getOneData?token=<TOKEN>"Response example