Brand
Order
Tag Order

Tag Order

Apply a tag value to an order.

Overview

  • Method: POST
  • Path: /brand/order/tag-order/<orderId>
  • Tags: brand

Parameters

orderId (path)

  • Type: string
  • Required: Yes
  • Description: orderId parameter

Request Body

  • Content Type: application/json
  • Required: Yes

Fields

FieldTypeRequiredDetails
valuestringYes

Responses

200

Successful response

Content Type: application/json

{
  "message": "string"
}

400

Bad Request

Content Type: application/json

{
  "error": "string",
  "details": [
    {}
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X POST \
  https://api.pillexa.com/brand/order/tag-order/<orderId> \
  -H "Content-Type: application/json" \
  -d '{"example": "data"}'