Brand
Order
Untag Order

Untag Order

Remove a tag from an order.

Overview

  • Method: DELETE
  • Path: /brand/order/untag-order/<orderId>/<tagId>
  • Tags: brand

Parameters

orderId (path)

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

tagId (path)

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

Request Body

No request body required.

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 DELETE \
  https://api.pillexa.com/brand/order/untag-order/<orderId>/<tagId> \
  -H "Content-Type: application/json" \