Item identifier values

The actual serials and lots in stock, per item and location. quantityonhand and quantityavailable are generated columns and are never writable.

The object#

FieldTypeDescription
idread-onlyintegerNolaPro id.
itemidintegerItemid. Id only.
itemstring(30)Item number (item.itemnum) instead of the id.
itemidentifieridintegerItemidentifierid. Id only.
itemidentifiervaluestring(255)The recorded identifier value (serial or lot number).
itemidentifiervaluedatestringThe value parsed as a date, when the identifier is date-typed (expiration dates).
quantityreceivedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantitycommittedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityusedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
itemidentifierdetailgroupidread-onlyintegerGroups values received together. There is no such table - it is an internal grouping key assigned on receipt. Read-only.
inventorylocationidintegerInventorylocationid. Id only.
inventorylocationstring(50)Location name instead of the id.
quantityonhandread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityavailableread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
hasquantityonhandread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
hasquantityavailableread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
cancelbooleanCancelled. NolaPro cancels rather than deletes, so a cancelled row is still readable.
externalidstring(100)Your own key. Scoped to your company.

Endpoints#

POST/itemidentifierdetails/batch 207

Create many.

Requires scope items:write.

Parameters
NameInTypeNotes
Body array
FieldTypeDescription
idread-onlyintegerNolaPro id.
itemidintegerItemid. Id only.
itemstring(30)Item number (item.itemnum) instead of the id.
itemidentifieridintegerItemidentifierid. Id only.
itemidentifiervaluestring(255)The recorded identifier value (serial or lot number).
itemidentifiervaluedatestringThe value parsed as a date, when the identifier is date-typed (expiration dates).
quantityreceivedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantitycommittedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityusedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
itemidentifierdetailgroupidread-onlyintegerGroups values received together. There is no such table - it is an internal grouping key assigned on receipt. Read-only.
inventorylocationidintegerInventorylocationid. Id only.
inventorylocationstring(50)Location name instead of the id.
quantityonhandread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityavailableread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
hasquantityonhandread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
hasquantityavailableread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
cancelbooleanCancelled. NolaPro cancels rather than deletes, so a cancelled row is still readable.
externalidstring(100)Your own key. Scoped to your company.
curl -X POST \
  'https://acme.nolapro.com/!/api/v2/itemidentifierdetails/batch' \
  -H 'Authorization: Bearer $NP_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: your-unique-key' \
  -d '[
    {
        "itemid": 104,
        "item": "Example item",
        "itemidentifierid": 104,
        "itemidentifiervalue": "Example itemidentifiervalue",
        "itemidentifiervaluedate": "2026-08-01",
        "quantityreceived": "1.000000"
    }
]'
GET/itemidentifierdetails 200403

List item identifier values.

Requires scope items:read.

Parameters
NameInTypeNotes
itemidquerystringRestrict to one itemid.
inventorylocationidquerystringRestrict to one inventorylocationid.
itemidentifieridquerystringRestrict to one itemidentifierid.
itemidentifiervaluequerystringPartial match, case insensitive.
cancelquerystringDefaults to false. Pass true or any.
externalidquerystringExact match on your own key.
includequerystringComma-separated extras to embed. Only custom_fields is available: the extra fields this install has defined on the record. Off by default, and an unrecognised value is refused rather than ignored. See Conventions.
When it fails
StatusCodeMeaning
403insufficient_scopeToken lacks read scope.
curl \
  'https://acme.nolapro.com/!/api/v2/itemidentifierdetails' \
  -H 'Authorization: Bearer $NP_TOKEN'
POST/itemidentifierdetails 201400

Create.

Requires scope items:write.

Parameters
NameInTypeNotes
Body
FieldTypeDescription
idread-onlyintegerNolaPro id.
itemidintegerItemid. Id only.
itemstring(30)Item number (item.itemnum) instead of the id.
itemidentifieridintegerItemidentifierid. Id only.
itemidentifiervaluestring(255)The recorded identifier value (serial or lot number).
itemidentifiervaluedatestringThe value parsed as a date, when the identifier is date-typed (expiration dates).
quantityreceivedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantitycommittedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityusedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
itemidentifierdetailgroupidread-onlyintegerGroups values received together. There is no such table - it is an internal grouping key assigned on receipt. Read-only.
inventorylocationidintegerInventorylocationid. Id only.
inventorylocationstring(50)Location name instead of the id.
quantityonhandread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityavailableread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
hasquantityonhandread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
hasquantityavailableread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
cancelbooleanCancelled. NolaPro cancels rather than deletes, so a cancelled row is still readable.
externalidstring(100)Your own key. Scoped to your company.
When it fails
StatusCodeMeaning
400invalid_requestA required field was missing.
curl -X POST \
  'https://acme.nolapro.com/!/api/v2/itemidentifierdetails' \
  -H 'Authorization: Bearer $NP_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: your-unique-key' \
  -d '{
    "itemid": 104,
    "item": "Example item",
    "itemidentifierid": 104,
    "itemidentifiervalue": "Example itemidentifiervalue",
    "itemidentifiervaluedate": "2026-08-01",
    "quantityreceived": "1.000000"
}'
Response 201
{
    "itemid": 104,
    "item": "Example item",
    "itemidentifierid": 104,
    "itemidentifiervalue": "Example itemidentifiervalue",
    "itemidentifiervaluedate": "2026-08-01",
    "quantityreceived": "1.000000"
}
GET/itemidentifierdetails/{id} 200404

Retrieve one record.

Requires scope items:read.

Parameters
NameInTypeNotes
idrequiredpathintegerThe record id.
includequerystringComma-separated extras to embed. Only custom_fields is available: the extra fields this install has defined on the record. Off by default, and an unrecognised value is refused rather than ignored. See Conventions.
When it fails
StatusCodeMeaning
404not_foundNo record with that id.
curl \
  'https://acme.nolapro.com/!/api/v2/itemidentifierdetails/104' \
  -H 'Authorization: Bearer $NP_TOKEN'
Response 200
{
    "itemid": 104,
    "item": "Example item",
    "itemidentifierid": 104,
    "itemidentifiervalue": "Example itemidentifiervalue",
    "itemidentifiervaluedate": "2026-08-01",
    "quantityreceived": "1.000000"
}
PATCH/itemidentifierdetails/{id} 200404

Update.

Requires scope items:write.

Parameters
NameInTypeNotes
idrequiredpathintegerThe record id.
Body
FieldTypeDescription
idread-onlyintegerNolaPro id.
itemidintegerItemid. Id only.
itemstring(30)Item number (item.itemnum) instead of the id.
itemidentifieridintegerItemidentifierid. Id only.
itemidentifiervaluestring(255)The recorded identifier value (serial or lot number).
itemidentifiervaluedatestringThe value parsed as a date, when the identifier is date-typed (expiration dates).
quantityreceivedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantitycommittedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityusedqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
itemidentifierdetailgroupidread-onlyintegerGroups values received together. There is no such table - it is an internal grouping key assigned on receipt. Read-only.
inventorylocationidintegerInventorylocationid. Id only.
inventorylocationstring(50)Location name instead of the id.
quantityonhandread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
quantityavailableread-onlyqtystring(6dp)Quantity, 6 decimal places, as a string. Stored as decimal(6dp).
hasquantityonhandread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
hasquantityavailableread-onlybooleanSTORED GENERATED in the database. Read-only - MySQL computes it.
cancelbooleanCancelled. NolaPro cancels rather than deletes, so a cancelled row is still readable.
externalidstring(100)Your own key. Scoped to your company.
When it fails
StatusCodeMeaning
404not_foundNo record with that id.
curl -X PATCH \
  'https://acme.nolapro.com/!/api/v2/itemidentifierdetails/104' \
  -H 'Authorization: Bearer $NP_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: your-unique-key' \
  -d '{
    "itemid": 104,
    "item": "Example item",
    "itemidentifierid": 104,
    "itemidentifiervalue": "Example itemidentifiervalue",
    "itemidentifiervaluedate": "2026-08-01",
    "quantityreceived": "1.000000"
}'
Response 200
{
    "itemid": 104,
    "item": "Example item",
    "itemidentifierid": 104,
    "itemidentifiervalue": "Example itemidentifiervalue",
    "itemidentifiervaluedate": "2026-08-01",
    "quantityreceived": "1.000000"
}
DELETE/itemidentifierdetails/{id} 200404

Cancel.

Requires scope items:cancel.

Parameters
NameInTypeNotes
idrequiredpathintegerThe record id.
When it fails
StatusCodeMeaning
404not_foundNo record with that id.
curl -X DELETE \
  'https://acme.nolapro.com/!/api/v2/itemidentifierdetails/104' \
  -H 'Authorization: Bearer $NP_TOKEN'
Response 200
{
    "itemid": 104,
    "item": "Example item",
    "itemidentifierid": 104,
    "itemidentifiervalue": "Example itemidentifiervalue",
    "itemidentifiervaluedate": "2026-08-01",
    "quantityreceived": "1.000000"
}