Models
Get Started
Collection
Team
Create Teams
POST
/
v1
/
ticketing
/
teams
curl --request POST \
--url http://localhost:8000/api/v1/ticketing/teams \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"members": [
{}
]
}'
{
"data": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"members": [
{
"id": "<string>",
"username": "<string>"
}
]
}
}
Query Parameters
Include raw response. When you want more data from the source
Body
application/json
Response
201 - application/json
The response is of type object
.
curl --request POST \
--url http://localhost:8000/api/v1/ticketing/teams \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"members": [
{}
]
}'
{
"data": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"members": [
{
"id": "<string>",
"username": "<string>"
}
]
}
}