Transfer of unit marking codes
The method is available for the DBS model.
If you are using an API Key token, one of the accesses in the list is required to call the method
- inventory-and-order-processing — Order processing and inventory
- all-methods — Full account management
If you work according to the model FBS
Use the method PUT v2/campaigns/{campaignId}/orders/{orderId}/boxes.
Transmits the labeling codes for the product units in the specified order to the Market. For more information about working with labeled products, see Seller's information on the Market.
Labeling of goods in the system «Честный ЗНАК» optional for orders from individuals, but required for business orders.
For the model DBS marking codes in the system «Честный ЗНАК» are not checked in GIS MT — verification is performed only for models FBS and Express.
The following types of codes are accepted:
- Codes in the system «Честный ЗНАК» or «ASL BELGISI» (for sellers Market Yandex Go).
- WIN for jewelry.
- RNPT and GTD for imported traceable goods.
For each item in the order that requires labeling, you need to provide a list of codes. — one for each item. For example, if there are two pairs of slippers and one pair of shoes in the order, you will get a list of two codes for the first position and a list of one code for the second.
| ⚙️ Limit: 100,000 requests per hour |
|---|
Request
PUT
https://api.partner.market.yandex.ru/v2/campaigns/{campaignId}/orders/{orderId}/identifiers
Path parameters
|
Name |
Description |
|
campaignId |
Type: integer The ID of the campaign (store) — The technical identifier that represents your store in the Yandex Market system when working through the API. It is uniquely linked to your store, but it is intended only for automated interaction. You can find it using a query GET v2/campaigns or find it in the seller's office on the Market. Click on your account icon → Settings and in the menu on the left, select APIs and modules:
⚠️ Do not confuse it with:
Min value: |
|
orderId |
Type: integer The order ID. |
Body
application/json
{
"items": [
{
"id": 0,
"instances": [
{
"cis": "example",
"uin": "example",
"rnpt": "example",
"gtd": "example",
"countryCode": "RU"
}
]
}
]
}
|
Name |
Description |
||||||||||||||
|
items |
Type: object[]
A list of items that require labeling. Example
|
Responses
200 OK
Answer 200 indicates that the codes were successfully recorded. The response contains brief information about the marked products.
Body
application/json
{
"status": "OK",
"result": {
"items": [
{
"id": 0,
"vat": "NO_VAT",
"count": 0,
"price": 0.5,
"offerName": "example",
"offerId": "example",
"instances": [
null
]
}
]
}
}
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
result
Type: object
items
Type: object[]
count
Type: integer
The number of product units.
id
Type: integer
The product ID in the order.
Allows you to identify the product within the order.
instances
Type: object[]
cis
Type: string
The unit identification code in the system "An honest SIGN" without a cryptotail or «ASL BELGISI» (for sellers of the Yandex Go Market).
Example:
examplecisFull
Type: string
The unit identification code in the system "An honest SIGN" with a cryptotail.
Example:
examplecountryCode
Type: string
The country of manufacture is in the ISO 3166-1 alpha-2 format. How to get
Min length:
2Max length:
2Pattern:
^[A-Z]{2}$Example:
RUgtd
Type: string
Cargo customs declaration.
It is a string of three numbers separated by a slash: XXXXXXXXXX/XXXXXXXX/XXXXXXXX.
The first part — the code of the customs office that registered the declaration for imported goods. Further — date and number of the declaration.
Example:
examplernpt
Type: string
The registration number of the product batch.
It is a string of four numbers separated by slashes: XXXXXXXXXX/XXXXXXXX/XXXXXXXX/XXX.
The first part — the code of the customs office that registered the declaration for the shipment. Further — the date, number of the declaration and the number of the marked product in the declaration.
Example:
exampleuin
Type: string
Jewelry's UIN (16-digit code) The manufacturer receives a WIN when he registers the product in the control system for the turnover of precious metals and stones. — GIIS DMDK.
Example:
exampleTransmitted marking codes.
Min items:
1Example
[ { "cis": "example", "cisFull": "example", "uin": "example", "rnpt": "example", "gtd": "example", "countryCode": "RU" } ]offerId
Type: string
Your SKU — the product ID in your system.
Usage rules SKU:
-
For each product SKU there must be one.
-
Already set SKU it cannot be released and reused for another product. Each product should receive a new identifier that has never been used in your catalog before.
SKU The product can be changed in the seller's account on the Market. Read about how to do this. in the Help of the Market for sellers.
Warning
Spaces at the beginning and end of the value are automatically deleted. For example,
" SKU123 "and"SKU123"they will be treated as identical values.What is SKU and how to assign it
Min length:
1Max length:
255Pattern:
^(?=.*\S.*)[^\x00-\x08\x0A-\x1f\x7f]{1,255}$Example:
exampleofferName
Type: string
Product name.
Example:
exampleprice
Type: number
The price of the product. It is specified in the currency that was specified in the catalog. Separator of whole and fractional parts — point.
vat
Type: string
VAT on the product or delivery:
-
NO_VAT— VAT is not charged, it is used only for certain types of services. -
VAT_0— 0% VAT. For example, it is used for the sale of goods exported in the customs procedure of export, or for the provision of services for the international transportation of goods. -
VAT_10— 10% VAT. For example, it is used in the sale of certain food and medical products. -
VAT_10_110— VAT 10/110. 10% VAT, applicable only for prepayment. -
VAT_20— VAT 20%. Basic VAT from 2019 to January 1, 2026. -
VAT_20_120— VAT 20/120. VAT is 20%, applicable only for prepayment. -
VAT_18— VAT 18%. Basic VAT until 2019. -
VAT_18_118— VAT 18/118. VAT was used until January 1, 2019 for prepayment. -
VAT_12— VAT is 12%. It is used only in Uzbekistan. -
VAT_05— VAT is 5%. VAT for the simplified taxation system (USN). -
VAT_07— VAT is 7%. VAT for the simplified taxation system (USN). -
VAT_22— VAT is 22%. Basic VAT starting from January 1, 2026. -
UNKNOWN_VALUE— unknown type.
Enum:
NO_VAT,VAT_0,VAT_10,VAT_10_110,VAT_20,VAT_20_120,VAT_18,VAT_18_118,VAT_12,VAT_05,VAT_07,VAT_22,UNKNOWN_VALUEThe list of items in the order to be marked.
Example
[ { "id": 0, "vat": "NO_VAT", "count": 0, "price": 0.5, "offerName": "example", "offerId": "example", "instances": [ { "cis": "example", "cisFull": "example", "uin": "example", "rnpt": "example", "gtd": "example", "countryCode": "RU" } ] } ]Brief information about the marked goods. The parameter is returned if the response is
OK.Example
{ "items": [ { "id": 0, "vat": "NO_VAT", "count": 0, "price": 0.5, "offerName": "example", "offerId": "example", "instances": [ { "cis": "example", "cisFull": "example", "uin": "example", "rnpt": "example", "gtd": "example", "countryCode": "RU" } ] } ] }Example
{ "result": { "items": [ { "id": 0, "vat": "NO_VAT", "count": 0, "price": 0.5, "offerName": "example", "offerId": "example", "instances": [ {} ] } ] } } -
400 Bad Request
The request contains incorrect data. Learn more about errors when working with orders
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
The error code.
Example:
examplemessage
Type: string
Description of the error.
Example:
exampleA list of errors.
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
A standard wrapper for server errors.
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
401 Unauthorized
The authorization data is not specified in the request. More information about the error
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
The error code.
Example:
examplemessage
Type: string
Description of the error.
Example:
exampleA list of errors.
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
A standard wrapper for server errors.
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
403 Forbidden
The authorization data is incorrect or access to the resource is prohibited. More information about the error
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
The error code.
Example:
examplemessage
Type: string
Description of the error.
Example:
exampleA list of errors.
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
A standard wrapper for server errors.
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
404 Not Found
The requested resource was not found. More information about the error
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
The error code.
Example:
examplemessage
Type: string
Description of the error.
Example:
exampleA list of errors.
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
A standard wrapper for server errors.
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
420 Method Failure
The resource access limit has been exceeded. More information about the error
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
The error code.
Example:
examplemessage
Type: string
Description of the error.
Example:
exampleA list of errors.
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
A standard wrapper for server errors.
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
500 Internal Server Error
Internal error of Yandex. Market. More information about the error
Body
application/json
{
"status": "OK",
"errors": [
{
"code": "example",
"message": "example"
}
]
}
Type: object
All of 1 type
-
Type: object
All of 2 types
-
Type: object
status
Type: string
The type of response. Possible values:
OK— There are no errors.ERROR— an error occurred while processing the request.
Enum:
OK,ERRORThe standard wrapper for server responses.
Example
{ "status": "OK" } -
Type: object
errors
Type: object[]
code
Type: string
The error code.
Example:
examplemessage
Type: string
Description of the error.
Example:
exampleA list of errors.
Min items:
1Example
[ { "code": "example", "message": "example" } ]Example
{ "errors": [ { "code": "example", "message": "example" } ] }
A standard wrapper for server errors.
Example
{ "status": "OK", "errors": [ { "code": "example", "message": "example" } ] } -
No longer supported, please use an alternative and newer version.
Meaning cis must match the regular expression ^(?=.{1,256}$)\u001D?(\(?01\)?\d{14}\(?21\)?([!-~]{6,8}|[!-~]{13}|[!-~]{20})(\u001D\(?240\)?.{1,30})?\u001D\(?9[1,3]\)?.+)$.
Without the cryptotail — ^(?=[!-~]{1,256}$)(\(?01\)?\d{14}\(?21\)?(.{6,8}|.{13}|.{20}))$.