Tags
Bulk-create tags
Create multiple tags from a `{ names: [...] }` array. Names are deduplicated; existing tags with the same name are returned rather than duplicated. Skipped names are reported in `data.failed`. **Requi
POST /v2/tags/batch
Parameters
Header parameters
Idempotency-Key
string required
Required. UUID per logical operation, reused on every retry. See
apps/rest-api/src/shared/idempotency.ts for the full contract. Missing → 400 BadRequest; same key + different body → 409 Conflict.Request body
Content-Type: application/json
names
array<string> required
Example
{
"names": [
"string"
]
}
Responses
201 — Created
Content-Type: application/json
data
object required
data.tags
array<object> required
data.tags[].id
string (uuid) required
data.tags[].user_id
string
data.tags[].name
string
data.tags[]._count
object
data.tags[]._count.tags_contacts
integer
data.pagination
object
data.pagination.nextCursor
string | null
data.pagination.count
integer
data.failed
array<object>
data.failed[].name
string
data.failed[].error
object
data.failed[].error.code
string
data.failed[].error.message
string
Example
{
"data": {
"tags": [
{
"id": "00000000-0000-0000-0000-000000000000"
}
]
}
}
400 — Request body failed validation.
Content-Type: application/json
(body)
any
401 — Missing or invalid API key.
Content-Type: application/json
(body)
any
403 — Valid key, insufficient permission.
Content-Type: application/json
(body)
any
404 — Resource does not exist.
Content-Type: application/json
(body)
any
409 — Request conflicts with the current state of the resource.
Content-Type: application/json
(body)
any
429 — Rate limit exceeded.
Content-Type: application/json
(body)
any
500 — Unexpected server error.
Content-Type: application/json
(body)
any
Code samples
curl https://api.prod.getdex.com/v2/tags/batch \
--request POST \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"names": [
"string"
]
}'
fetch('https://api.prod.getdex.com/v2/tags/batch', {
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
names: ['string']
})
})
requests.post(
"https://api.prod.getdex.com/v2/tags/batch",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"names": [
"string"
]
}
)
Delete a tag
Permanently delete a tag (its contact assignments cascade). Returns the canonical bulk envelope: `{ data: { affected: 1, ids: [tagId] } }`. `Idempotency-Key` is optional.
Bulk-delete tags
Delete multiple tags in one request: `{ tagIds: [...] }`, or `{ deleteAll: true }` to wipe every tag the user owns. **Requires `Idempotency-Key`** (the `deleteAll` arm is never safe to blindly re-exec

