Skip to main content
PUT
/
v1
/
teams
/
{uid}
Update a Team
curl --request PUT \
  --url https://api.siit.io/v1/teams/{uid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": "<string>"
}
'
{
  "result": {
    "uid": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "value": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uid
string
required

The UID of the Team

Body

application/json
value
string

The Team name

Response

Successful

result
object