POST v6/purchaseorder/save

Add or update information about a Work Order

Request Information

URI Parameters

None.

Body Parameters

PurchaseOrderV6Model
NameDescriptionTypeAdditional information
PurchaseOrderID

Unique identifier of a Purchase Order

integer

None.

PurchaseOrder

The Purchase Order number

string

None.

StatusID

integer

None.

SupplierID

The supplier associated with the Purchase Order

integer

None.

DestinationID

The destination associated with the Purchase Order

integer

None.

CurrencyID

The currency associated with the Purchase Order

integer

None.

Total

The total amount associated with the Purchase Order

decimal number

None.

Date

The PO date

date

None.

DeliveryDate

The Delivery date

date

None.

Notes

string

None.

Request Formats

application/json, text/json

Sample:
{
  "purchaseOrderID": 1,
  "purchaseOrder": "sample string 2",
  "statusID": 3,
  "supplierID": 4,
  "destinationID": 5,
  "currencyID": 6,
  "total": 7.1,
  "date": "2025-11-08T08:23:06.2486702+00:00",
  "deliveryDate": "2025-11-08T08:23:06.2486702+00:00",
  "notes": "sample string 10"
}

Response Information

Resource Description

SharedRecordIdModelv6
NameDescriptionTypeAdditional information
RecordId

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "recordId": 1
}