Skip to main content
POST
/
organizations
/
{organization_id}
/
content_tags
Create a content tag
curl --request POST \
  --url https://library-backend.dashsocial.com/organizations/{organization_id}/content_tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "brand_ids": [
    123
  ]
}
'
{
  "created_at": "2023-11-07T05:31:56Z",
  "id": 123,
  "name": "<string>",
  "organization_id": 123,
  "updated_at": "2023-11-07T05:31:56Z",
  "brand_ids": [
    123
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.dashsocial.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization_id
integer<int32>
required

The Dash Social assigned ID of the organization.

Body

application/json
name
string
required

content tag name.

Required string length: 1 - 100
brand_ids
integer[]

The Brand IDs to have access to the content tag.

Response

Created

created_at
string<date-time>
required

Timestamp of when the content tag was originally created.

id
integer
required

ID of the content tag.

name
string
required

content tag name.

Required string length: 1 - 100
organization_id
integer
required

ID of the organization that owns the content tag.

updated_at
string<date-time>
required

Timestamp of when the content tag was last updated.

brand_ids
integer[]

The Brand IDs to have access to the content tag.

Minimum array length: 1