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
Path Parameters
Body ()
Root Schema : schema
Type: object
Show Source
Back to Top

Response

201 Response

Back to Top