cURL
curl --request POST \ --url https://api.projectcor.com/v1/teams \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "workspace_id": 123 } '
{ "id": 123, "name": "<string>", "description": "<string>", "workspace_id": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
Creates a new team entity.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Team Name
Team description
Workspace ID
Team created successfully
Was this page helpful?