Stock transfer numbering
This page provides a description of the available API routes for managing stock transfer numberings.
Last updated
Was this helpful?
This page provides a description of the available API routes for managing stock transfer numberings.
Last updated
Was this helpful?
When is created, the documentNumber
field is generated by server, based on settings. API methods listed below provides way to modify numbering settings.
GET
http://{server-address}/stocktransfernumberings
Returns all stock transfer numberings that matches query parameters. Result is of type .
id
string
Supports NData syntax.
isActive
bool
Supports NData syntax.
$skip
int
Pagination property. Describing number of records to skip from beginning of result collection.
$take
int
Pagination property. Maximum count of items to be returned.
$sort
string[]
Comma separated list of property names. Please see NData syntax.
$count
bool
If set to true
, response will not contain items
collection. Use to get resource count, not the resources themselves.
type
StockTransferType
Supports NData syntax.
Authorization*
string
Authorization header with authorization token.
GET
http://{server-address}/stocktransfernumberings/{id}
id*
string
Unique identifier.
Authorization*
string
Authorization header with authorization token.
POST
http://{server-address}/stocktransfernumberings
Required rights
Authorization*
string
Authorization header with authorization token.
(body)*
StockTransferNumbering
Model to create
PUT
http://{server-address}/stocktransfernumberings/{id}
Required rights
id*
string
Unique identifier.
Authorization*
string
Authorization header with authorization token.
(body)*
StockTransferNumbering
Model to create or update.
DELETE
http://{server-address}/stocktransfernumberings/{id}
Required rights
id*
string
Unique identifier.
Authorization*
string
Authorization header with authorization token.
Result is of type .
Creates new stock transfer numbering. Result is of type .
Authorized user must have StockTransferNumberingCreate
assigned.
Updates existing or creates new stock transfer numbering. Result is of type .
Authorized user must have assigned StockTransferNumberingCreate
or StockTransferNumberingUpdate
.
Authorized user must have StockTransferNumberingDelete
assigned.