Skip to content

Get Organization

GET/v2/organizations/{id}

Returns a single organization by ID, including its groups, keywords, tags, members, and subscription state.

100 req/s

Parameters

Path Parameters

idintegerrequiredpath

The unique identifier of the organization (int64).

Try it

Parameters

Organization ID

Response

json
{
  "id": 100,
  "name": "Acme Inc.",
  "groupIds": [10, 11],
  "userIds": [12345, 67890],
  "timeZone": "Europe/Zagreb",
  "groups": [
    {
      "id": 10,
      "name": "PR Team",
      "color": "#4A90D9",
      "colorNew": "blue",
      "public": true,
      "keywordIds": [200, 201],
      "memberIds": [12345],
      "invitedUsers": [
        { "email": "newuser@example.com", "roleId": "member" }
      ]
    }
  ],
  "keywords": [
    {
      "id": 200,
      "name": "Acme",
      "color": "#E94E77",
      "colorNew": "red",
      "active": true,
      "editedAt": "2024-03-10T14:00:00Z",
      "createdAt": "2024-01-15T09:30:00Z"
    }
  ],
  "tags": [
    { "id": 1, "name": "Important" }
  ],
  "state": "ACTIVE",
  "createdAt": "2024-01-15T09:30:00Z",
  "currentMonthMentionsLimit": 50000
}

Response Fields

FieldTypeDescription
idinteger (int64)Unique identifier for the organization
namestringDisplay name of the organization
groupIdsarray of integer (int64)IDs of the groups within the organization
userIdsarray of integer (int64)IDs of the users belonging to the organization
timeZonestringThe organization's time zone (IANA identifier, e.g. Europe/Zagreb)
groupsarrayDetailed group objects (see below)
keywordsarrayDetailed keyword objects (see below)
tagsarrayTag objects associated with the organization (see below)
statestringSubscription state. One of BLOCKED, UNUSED, SUSPENDED, ACTIVE
createdAtstring (date-time)Timestamp of when the organization was created
currentMonthMentionsLimitinteger (int64)Mentions limit for the current billing month

Group Object

FieldTypeDescription
idinteger (int64)Unique identifier for the group
namestringDisplay name of the group
colorstringGroup color (legacy hex value)
colorNewstringGroup color (current palette value)
publicbooleanWhether the group is visible to all organization members
keywordIdsarray of integer (int64)IDs of the keywords in the group
memberIdsarray of integer (int64)IDs of the users who are members of the group
invitedUsersarrayUsers invited to the group but not yet accepted (see below)

Invited User Object

FieldTypeDescription
emailstringEmail address of the invited user
roleIdstringIdentifier of the role the user is invited with

Keyword Object

FieldTypeDescription
idinteger (int64)Unique identifier for the keyword
namestringDisplay name of the keyword
colorstringKeyword color (legacy hex value)
colorNewstringKeyword color (current palette value)
activebooleanWhether the keyword is currently active
editedAtstringTimestamp of the last edit
createdAtstringTimestamp of when the keyword was created

Tag Object

FieldTypeDescription
idinteger (int64)Unique identifier for the tag
namestringDisplay name of the tag

Errors

StatusDescription
404 Not FoundNo organization with the given ID exists, or the authenticated user does not have access to it

See the Errors & Rate Limits page for the full error response structure.

Built by Determ — Media Monitoring & Analytics