Standard Inventory Count REST API
Resource URL Summary
Retrieve the details of a specific Physical Inventory Count Request
GET /seiapi/v3/trans/PhysicalInventoryRequest/${PhysicalInventoryNum}
Insert the details of a specific Physical Inventory Count Request
PUT /seiapi/v3/trans/PhysicalInventoryRequest/${PhysicalInventoryNum}
Delete a specific Physical Inventory Count Request
DELETE /seiapi/v3/trans/PhysicalInventoryRequest/${PhysicalInventoryNum}
API Specific Parameters
Parameter | Description |
---|---|
| Identifies the unique Physical Inventory Count Request object. |
HTTP Headers
This API uses the default ServiceMobility HTTP Headers.
API Specifics
Retrieve the details of a specific Physical Inventory Count Request
This REST API will return a Physical Inventory Count Request with the specified ID. The Physical Inventory Count Request with the specified ID must already exist in the system.
URL
GET /seiapi/v3/trans/PhysicalInventoryRequest/${PhysicalInventoryNum}
HTTP Request Body
This request does not require a request body.Â
HTTP Response Body
On success, an HTTP response code of 200 will be returned, and the response body will contain an Physical Inventory Count Object. Otherwise, on error, the response body will contain a descriptive reason for the error.Â
Insert the details of a specific Service Contract
This REST API will insert a new Physical Inventory Count Request with the specified ID into the system, if a Physical Inventory Count Request with the specified ID does not already exist in the system.
Once created, the Physical Inventory Count Request object can no longer be updated by the backend system, only the counting technician.
URL
PUT /seiapi/v3/trans/PhysicalInventoryRequest/${PhysicalInventoryNum}
HTTP Request Body
The HTTP request body must contain a valid Physical Inventory Count Object.
HTTP Response
On success the API will return a response code of 200.
Delete a specific Service Contract
This REST API will delete a Physical Inventory Count Request with the specified IDÂ from the system. The Physical Inventory Count Request with the specified ID must already exist in the system.
URL
DELETE /seiapi/v3/trans/PhysicalInventoryRequest/${PhysicalInventoryNum}
HTTP Request Body
This request does not require a request body.
HTTP Response
On success an HTTP response code of 200 will be returned. The system will return HTTP response code 410 in case of non-existent Physical Inventory Count Object.