Skip to main content

Update the users association to the specified project

PUT 

https://api.spectrocloud.com/v1/projects/:uid/users

Update the users association to the specified project

Request

Path Parameters

    uid stringrequired

Body

    users

    undefined[]

  • Array [

  • rolesstring[]
    userIdstring
  • ]

Responses

The resource was updated successfully

curl -L -X PUT 'https://api.spectrocloud.com/v1/projects/:uid/users' \
-H 'Content-Type: application/json' \
-H 'ApiKey: <API_KEY_VALUE>' \
--data-raw '{
"users": [
{
"roles": [
"string"
],
"userId": "string"
}
]
}'
Request Collapse all
Base URL
https://api.spectrocloud.com
Auth
Parameters
— pathrequired
Body
{
"users": [
{
"roles": [
"string"
],
"userId": "string"
}
]
}