inventory auditbatch (http://api.3plcentral.com/rels/inventory/auditbatch)
Resource:
a logical collection of audits
C# Rel Const:
Rels.InventorySvc.AuditBatch
URI template:
auditbatchs/{batchName}
Obtain URI from:
Return AuditBatch record
Success status: 200
Name (* = required) Data Type Description
batchName * string Name of the audit batch record to retrieve
Returns desired audit batch record or 404
Type Description
Name string
AssignedUser Generic.Models.UserIdentifier
Name string
Id int
Priority int
Status int
InventoryAuditIds IList<int>
Sample accept: application/hal+json
{
  "name": "str",
  "assignedUser": {
    "name": "str",
    "id": 2
  },
  "priority": 2,
  "status": 3,
  "inventoryAuditIds": [
    1
  ]
}
Allows one to set priority or assigned user.
Allows the addition or removal of audits from the batch.
Cannot rename the batch.
Adding Audits to a batch will set the batches priority and assigned user onto these records.
Success status: 200
Name (* = required) Data Type Description
batchName * string Name of the batch to update
Parameters and content to change to
Type Description
Name string
AssignedUser Generic.Models.UserIdentifier
Name string
Id int
Priority int
Status int
InventoryAuditIds IList<int>
Sample content-type: application/hal+json
{
  "name": "str",
  "assignedUser": {
    "name": "str",
    "id": 2
  },
  "priority": 2,
  "status": 3,
  "inventoryAuditIds": [
    1
  ]
}
Returns the updated AuditBatch record
Type Description
Name string
AssignedUser Generic.Models.UserIdentifier
Name string
Id int
Priority int
Status int
InventoryAuditIds IList<int>
Sample accept: application/hal+json
{
  "name": "str",
  "assignedUser": {
    "name": "str",
    "id": 2
  },
  "priority": 2,
  "status": 3,
  "inventoryAuditIds": [
    1
  ]
}

This documentation is subject to change, and is updated often and without warning. The models documented may or may not be available to users now or in the future. Use this documentation at your own risk.
Contact api@3plcentral.com with any questions about this documentation.