Clipform

Set tags on a form

Full replace of a form's tags. Upserts missing tags in the workspace. Idempotent.

PUT
/forms/{formId}/tags

Authorization

Authorization
Required
Bearer <token>

API key (cf_*) passed as Bearer token

In: header

Request Body

application/jsonRequired
tags
Required
array<string>

Tag names (e.g. ["quiz", "trivia", "arsenal"])

Path Parameters

formId
Required
string
Format: "uuid"
curl -X PUT "https://api.clipform.io/v1/forms/497f6eca-6276-4993-bfeb-53cbbbba6f08/tags" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "tags": [
      "string"
    ]
  }'

Tags set

{
  "tags": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "string",
      "color": "string"
    }
  ]
}