Vigilfield Docs
API referenceTeams

`POST /teams` — create a team.

POST/teams

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/teams" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "created_at": "string",  "description": "string",  "external_id": "string",  "external_idp_id": "string",  "id": "string",  "is_system": true,  "member_count": 0,  "member_ids": [    "string"  ],  "name": "string",  "org_id": "string",  "source": null,  "updated_at": "string"}