Update an ad hoc inventory

patch/adhoc-inventories/{adhoc_inventory_id}
SecuritybearerAuth
Request
path Parameters
adhoc_inventory_id
required
integer <int64> (IdParam) >= 1

Adhoc inventory identifier

Example: 1
Request Body schema: application/json-patch+json

A set of JSONPatch operations to be performed

Array
op
required
string

The JSON Patch operation to be performed

Enum: "add" "remove" "replace" "move" "copy" "test"
path
required
string

A JSON-Pointer

value
object

The value to be used within the operations

from
string

A string containing a JSON Pointer value

Responses
200

Success

400

Invalid Request

401

Unauthorized

403

Forbidden

404

Not Found

Request samples
application/json-patch+json
[
  • {
    • "op": "add",
    • "path": "string",
    • "value": { },
    • "from": "string"
    }
]
Response samples
application/json
{
  • "id": 1,
  • "siteId": 1,
  • "name": "string",
  • "supplierAccountId": 0,
  • "buyPrice": 0,
  • "sellPrice": 0,
  • "billImmediately": false,
  • "isCredit": false,
  • "creditReason": "string",
  • "paid": false,
  • "paymentTerms": 0,
  • "paymentType": "CHEQUE",
  • "quantity": 0,
  • "rentalProductCategoryId": 1,
  • "taxBandId": 1,
  • "nominalCode": "string",
  • "billRunId": 1,
  • "adhocBillRunId": 1
}