PATCH
/
v1
/
ticketing
/
teams
/
{team_name}
curl --request PATCH \
  --url http://localhost:8000/api/v1/ticketing/teams/{team_name} \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "members": [
    {}
  ]
}'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "members": [
      {
        "id": "<string>",
        "username": "<string>"
      }
    ]
  }
}

Path Parameters

team_name
string
required

Query Parameters

raw
boolean

Include raw response. When you want more data from the source

Body

application/json
name
string
description
string
members
object[]

Response

200 - application/json
data
object
required