Skip to main content
GET
/
assignees
Get assignees
curl --request GET \
  --url https://community.dashsocial.com/assignees \
  --header 'Authorization: Bearer <token>'
[
  {
    "accessible_brands": [
      123
    ],
    "email": "<string>",
    "first_name": "<string>",
    "id": 123,
    "last_name": "<string>",
    "avatar_url": "<string>"
  }
]

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.

Query Parameters

brand_ids
integer[]
required

List of brand IDs to fetch assignees for

organization_ids
integer[]

List of organization IDs to fetch assignees for

source_updated_after
string<date-time>

Start date for filtering assignees

source_updated_before
string<date-time>

End date for filtering assignees

Response

OK

accessible_brands
integer[] | null
required

The list of brands the user is part of

email
string
required

The user's email.

first_name
string | null
required

The user's first name.

id
integer
required

The user ID.

last_name
string | null
required

The user's last name.

avatar_url
string<url> | null

The user's avatar url.