Warehouse Materials
This api is used to retrieve a list of warehouse materials from OutSmart. Each records contains the following data:
wsa_article_code
Code of an existing article/material in OutSmart
Varchar (255)
wsa_article_description
The name of the material
Varchar (255)
wsa_wse_code
Code of an existing warehouse in OutSmart
Varchar (55)
wsa_wse_description
The name of the warehouse
Varchar (255)
wsa_maximum_amount
The maximum amount of this article within this warehouse
Decimal
wsa_order_amount
Order amount (minimum stock level) for this articel in this warehouse
Decimal
wsa_current_amount
The initial/current amount of this article in this warehouse
Decimal
wsa_optimal_amount
The desired stock level for this article in this warehouse
Decimal
To filter the list of results, the following parameters can be provided within the request url:
wsa_article_code
Code of an existing article/material in OutSmart
Varchar (255)
wsa_wse_code
Code of an existing warehouse in OutSmart
Varchar (55)
{{client_token}}{{software_token}}1189902Response_200
No content
GET /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Response_200
No content
This api is used to create materials to warehouses within OutSmart. Each warehouse material record can contain the following data:
wsa_article_code
Code of an existing article/material in OutSmart
Y
Varchar (255)
wsa_wse_code
Code of an existing warehouse in OutSmart
Y
Varchar (55)
wsa_maximum_amount
The maximum amount of this article within this warehouse
N
Decimal
wsa_order_amount
Order amount (minimum stock level) for this articel in this warehouse
N
Decimal
wsa_current_amount
The initial/current amount of this article in this warehouse
Y
Decimal
wsa_optimal_amount
The desired stock level for this article in this warehouse
N
Decimal
{{client_token}}{{software_token}}Response_200
No content
POST /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Response_200
No content
This api is used to delete materials warehouses from OutSmart. Each warehouse material DELETE request must contain the following data:
wsa_article_code
Code of an existing article/material in OutSmart
Y
Varchar (255)
wsa_wse_code
Code of an existing warehouse in OutSmart
Y
Varchar (55)
{{client_token}}{{software_token}}Response_200
No content
DELETE /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Response_200
No content
This api is used to update materials to warehouses within OutSmart. Each warehouse material record can contain the following data:
wsa_article_code
Code of an existing article/material in OutSmart
Y
Varchar (255)
wsa_wse_code
Code of an existing warehouse in OutSmart
Y
Varchar (55)
wsa_maximum_amount
The maximum amount of this article within this warehouse
N
Decimal
wsa_order_amount
Order amount (minimum stock level) for this articel in this warehouse
N
Decimal
wsa_optimal_amount
The desired stock level for this article in this warehouse
N
Decimal
{{client_token}}{{software_token}}Response_200
No content
PATCH /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Response_200
No content
Last updated
Was this helpful?
