cURL
curl --request POST \ --url http://localhost:8000/api/v1/ticketing/teams \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "members": [ {} ] } '
{ "data": { "id": "<string>", "name": "<string>", "description": "<string>", "members": [ { "id": "<string>", "username": "<string>" } ] } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Include raw response. When you want more data from the source
Show child attributes