Skip to main content
PUT
/
v1
/
projects
/
{PROJECT_ID}
/
members
Update project members
curl --request PUT \
  --url https://api.domo.com/v1/projects/{PROJECT_ID}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  27,
  105,
  93,
  84,
  107
]
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

PROJECT_ID
string
required

The ID of the project

Body

application/json

The request body accepts an array of member ids.

Response

200

OK