Skip to main content
PUT
/
api
/
management
/
squads
/
{squad}
/
users
/
{user}
Atualizar tipo de um usuário no squad
curl --request PUT \
  --url https://api.olie.ai/api/management/squads/{squad}/users/{user} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "sample_text"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

squad
string
required
user
string
required

Body

application/json
type
string
Example:

"sample_text"

Response

200

200