POST /allowed-tags.json

POST /allowed-tags.json
application/json

Body Required

  • resource string Required

    Resource

    Values are all, customers, dropshipments, dropshipProviders, fulfillments, goodsReceipts, purchases, resellers, saleReturns, or sales. Default value is all.

  • tag string Required

    Tag

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • createdAt string(date-time)

      Created at

    • id integer(int32)

      Id

    • resource string Required

      Resource

      Values are all, customers, dropshipments, dropshipProviders, fulfillments, goodsReceipts, purchases, resellers, saleReturns, or sales. Default value is all.

    • tag string Required

      Tag

    • updatedAt string(date-time)

      Updated at

POST /allowed-tags.json
curl \
 --request POST 'http://api.example.com/v1/allowed-tags.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"resource":"all","tag":"string"}'
Request examples
{
  "resource": "all",
  "tag": "string"
}
Response examples (200)
{
  "createdAt": "2025-05-04T09:42:00Z",
  "id": 42,
  "resource": "all",
  "tag": "string",
  "updatedAt": "2025-05-04T09:42:00Z"
}