Create a Team for an Organization
post
/api/v2/organizations/{id}/teams/
Make a POST request to this resource with the following team fields to create a new team associated with this organization.
name
: Name of this team. (string, required)description
: Optional description of this team. (string, default=""
)
Remove Organization Teams:
Make a POST request to this resource with id
and disassociate
fields to
delete the associated team.
{
"id": 123,
"disassociate": true
}
Request
Supported Media Types
- application/json
Path Parameters