Price tags

Price_tags_create

POST
/api/v1/price-tags
AuthorizationBearer <token>

In: header

bounding_boxarray<number>

Coordinates of the bounding box, in the format [y_min, x_min, y_max, x_max]

status?PriceTagStatusEnum | NullEnum

The annotation status

  • 0 - deleted
  • 1 - linked_to_price
  • 2 - not_readable
  • 3 - truncated
  • 4 - not_price_tag
  • 5 - no_barcode
  • 10 - other
Range-2147483648 <= value <= 2147483647
price_id?integer
proof_idinteger

Response Body

curl -X POST "https://loading/api/v1/price-tags" \  -H "Content-Type: application/json" \  -d '{    "bounding_box": [      0.1    ],    "proof_id": 0  }'
{
  "bounding_box": [
    0.1
  ],
  "status": 0,
  "price_id": 0,
  "proof_id": 0
}