PUT
/public/v1/projects/{projectId}/users/{projectUserId}
curl \
--request PUT 'https://live.smartpmtech.com/public/v1/projects/{projectId}/users/{projectUserId}' \
--header "X-API-KEY: $API_KEY" \
--header "Content-Type: application/json" \
--header "X-COMPANY-ID: string" \
--data '{"user":"string","role":"string","disableNotification":true}'
Request examples
# Headers
X-COMPANY-ID: string
# Payload
{
"user": "string",
"role": "string",
"disableNotification": true
}
Response examples (500)
{}
Response examples (200)
{
"id": 42,
"user": "string",
"role": "string"
}