Parts and Inventory | SE Management
Overview
URL | api/{tenantKey}/{orgKey}/inventoryManagement/sEManagements |
Methods Supported | GET, POST |
All Operations
This service includes the following operations:
- GET:
- POST:
All Resources
This service uses the following resources:
GET SE Management
Returns the list of entity records that can be processed by the 'PartEntries' service.
The following elements are required:
pageIndex | (int) The index of the page of the list that should be returned. |
pageSize | (int) The number of page elements that should be returned (max. is 1000). |
The following elements are optional:
requisition | (string) Requisition This is a query string parameter. |
requisitionId | (Guid?) Requisition Id This is a query string parameter. |
requisitonDescription | (string) Requisiton Description This is a query string parameter. |
company | (string) Company This is a query string parameter. |
warehouse | (string) Warehouse This is a query string parameter. |
Response:
When successful, the response body contains the list of entity records available for processing. See StockEntryManagementLine. |
Response status codes:
200 | OK. The operation was completed successfully. |
400 | BadRequest. The request parameters are invalid. |
Resource URL:
api/{tenantKey}/{orgKey}/inventoryManagement/sEManagements/{pageIndex}/{pageSize}?requisition={requisition}&requisitionId={requisitionId}&requisitonDescription={requisitonDescription}&company={company}&warehouse={warehouse}
GET /inventoryManagement/sEManagements/{pageIndex}/{pageSize}?requisition={requisition}&requisitionId={requisitionId}&requisitonDescription={requisitonDescription}&company={company}&warehouse={warehouse}
POST SE Management
Instructs the 'PartEntries' service to process the specified entity records.
The following elements are required:
list | (StockEntryManagementLine) List of the entity records that should be processed. See StockEntryManagementLine. |
companyKey | (string) The company key. |
Response:
When successful, the response body is empty. The URL of the processed items is returned in the response location header. |
Response status codes:
201 | Created. The operation was completed successfully. |
400 | BadRequest. The request parameters are invalid. |
Resource URL:
api/{tenantKey}/{orgKey}/inventoryManagement/sEManagements/{companyKey}
POST /inventoryManagement/sEManagements/{companyKey}
Resources
StockEntryManagement
The following elements are required:
selectedCount | (int) Selected Count. |
The following elements are optional:
requisition | (string) Requisition. |
requisitionId | (Guid) Requisition Id. |
requisitonDescription | (string) Requisiton Description. |
company | (string) Company. |
warehouse | (string) Warehouse. |
StockEntryManagementLine
The following elements are required:
selected | (bool) Selected. |
The following elements are optional:
part | (string) Part. |
quantity | (decimal) Quantity. |
warehouse | (string) Warehouse. |
company | (string) Company. |
partId | (Guid) Part Id. |
partKey | (string) Part Key. |
partDescription | (string) Part Description. |
unit | (string) Unit. |
unitKey | (string) Unit Key. |
unitId | (Guid) Unit Id. |
quantityByUnit | (decimal) Quantity By Unit. |
unitBaseId | (Guid) Unit Base Id. |
date | (DateTimeOffset) Date. |