Skip to content

projects/get_contributors

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/projects/get_contributors
HandlerOperatelyWeb.Api.Projects.GetContributors

Authentication#

  • Requires a valid API token.
  • Read-only and full-access tokens can execute this query.

Inputs#

FieldTypeRequiredNullableDefault
project_idid primitive (encoded as string)YesNo-
querystringNoYes-
ignored_idsarray of id primitive (encoded as string)NoYes-

Outputs#

FieldTypeRequiredNullable
contributorsarray of person objectYesYes

cURL Example#

Copied
curl --request GET \
  --url "https://app.operately.com/api/external/v1/projects/get_contributors?ignored_ids[]=value&project_id=value&query=value" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}"

Response Example#

{
  "contributors": [
    {
      "access_level": 123,
      "agent_def": "<agent_def>",
      "avatar_blob_id": "value",
      "avatar_url": "value",
      "company": "<company>",
      "description": "value",
      "email": "value",
      "full_name": "value",
      "has_open_invitation": true,
      "id": "value",
      "invite_link": "<invite_link>",
      "manager": "<person>",
      "notify_about_assignments": true,
      "notify_on_mention": true,
      "peers": [
        "<person>"
      ],
      "permissions": "<person_permissions>",
      "reports": [
        "<person>"
      ],
      "send_daily_summary": true,
      "show_dev_bar": true,
      "suspended": true,
      "timezone": "value",
      "title": "value",
      "type": "value"
    }
  ]
}