Skip to main content
GET
/
organizations
/
{organization_id}
/
content_tags
Retrieve content tags
curl --request GET \
  --url https://library-backend.dashsocial.com/organizations/{organization_id}/content_tags \
  --header 'Authorization: Bearer <token>'
[
  {
    "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.

Query Parameters

ids
integer[]

Comma-separated list of content tag IDs to return.

Minimum array length: 1

Response

OK

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