For the complete documentation index, see llms.txt. This page is also available as Markdown.

Warehouse Materials

Get warehouse materials

get
/warehouse-material/

This api is used to retrieve a list of warehouse materials from OutSmart. Each records contains the following data:

Parameter
Description
Type (size)

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:

Parameter
Description
Type (size)

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)

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
tokenstringOptionalExample: {{client_token}}
software_tokenstringOptionalExample: {{software_token}}
wsa_wse_codeintegerOptionalExample: 1
wsa_article_codeintegerOptionalExample: 189902
Responses
200

Response_200

No content

get/warehouse-material/
GET /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Response_200

No content

Add warehouse materials

post
/warehouse-material/

This api is used to create materials to warehouses within OutSmart. Each warehouse material record can contain the following data:

Parameter
Description
Required
Type (size)

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

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
tokenstringOptionalExample: {{client_token}}
software_tokenstringOptionalExample: {{software_token}}
Responses
200

Response_200

No content

post/warehouse-material/
POST /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Response_200

No content

Delete warehouse materials

delete
/warehouse-material/

This api is used to delete materials warehouses from OutSmart. Each warehouse material DELETE request must contain the following data:

Parameter
Description
Required
Type (size)

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)

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
tokenstringOptionalExample: {{client_token}}
software_tokenstringOptionalExample: {{software_token}}
Responses
200

Response_200

No content

delete/warehouse-material/
DELETE /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Response_200

No content

Update warehouse materials

patch
/warehouse-material/

This api is used to update materials to warehouses within OutSmart. Each warehouse material record can contain the following data:

Parameter
Description
Required
Type (size)

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

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
tokenstringOptionalExample: {{client_token}}
software_tokenstringOptionalExample: {{software_token}}
Responses
200

Response_200

No content

patch/warehouse-material/
PATCH /warehouse-material/ HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Response_200

No content

Last updated

Was this helpful?