Teams
Update a team
Get Started
API Documentation
Teams
Update a team
Update a team
PUT
/
api
/
teams
/
{slug}
curl --location --request PUT 'http://localhost:3005/api/teams/acme' \
--header 'Accept: application/json' \
--header 'Authorization: Token <token>' \
--data '{
"name": "ACME Inc.",
"slug": "acme"
}'
{
"data": {
"id": 1,
"name": "ACME Inc.",
"slug": "acme",
"logo": null,
"createdAt": "2023-07-02T16:07:08.469Z",
"updatedAt": "2023-07-02T16:07:08.469Z"
}
}
Path
Team slug
Body
Team name
Team slug. It should be unique across all teams.
curl --location --request PUT 'http://localhost:3005/api/teams/acme' \
--header 'Accept: application/json' \
--header 'Authorization: Token <token>' \
--data '{
"name": "ACME Inc.",
"slug": "acme"
}'
{
"data": {
"id": 1,
"name": "ACME Inc.",
"slug": "acme",
"logo": null,
"createdAt": "2023-07-02T16:07:08.469Z",
"updatedAt": "2023-07-02T16:07:08.469Z"
}
}
curl --location --request PUT 'http://localhost:3005/api/teams/acme' \
--header 'Accept: application/json' \
--header 'Authorization: Token <token>' \
--data '{
"name": "ACME Inc.",
"slug": "acme"
}'
{
"data": {
"id": 1,
"name": "ACME Inc.",
"slug": "acme",
"logo": null,
"createdAt": "2023-07-02T16:07:08.469Z",
"updatedAt": "2023-07-02T16:07:08.469Z"
}
}