Skip to content

add_project_contributors

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/add_project_contributors
HandlerOperatelyWeb.Api.Mutations.AddProjectContributors

Authentication#

  • Requires a valid API token.
  • Requires a write-enabled token.
  • Read-only tokens return 403.

Inputs#

FieldTypeRequiredNullableDefault
project_idstringYesNo-
contributorsarray of project_contributor_input objectYesNo-

Outputs#

FieldTypeRequiredNullable
successbooleanYesNo

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/add_project_contributors" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"contributors":[{"access_level":"no_access", "person_id":"value", "responsibility":"value"}], "project_id":"value"}'

Response Example#

{
  "success": true
}