PUT
/
v1
/
teams
/
{team}
/
onboarding
cURL
curl --request PUT \
  --url https://api.comm.com/api/v1/teams/{team}/onboarding \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "onboarding_data": [
    "<string>"
  ]
}'
{
  "success": true,
  "message": "Onboarding data updated",
  "data": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

team
string<uuid>
required

The team ID

Body

application/json

Response

200
application/json

The response is of type object.