API ReferenceSchedule groups

Create schedule group

Create a new schedule group in the account.

POST
/v1/schedule_groups

Authorization

authorization
AuthorizationBearer <token>

In: header

Request Body

application/json

Schedule group params

TypeScript Definitions

Use the request body type in TypeScript.

Request schema for creating a schedule group

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/schedule_groups" \  -H "Content-Type: application/json" \  -d '{    "name": "Orientations"  }'
{  "data": {    "id": "sgrp_a1b2c3d4e5f6",    "name": "Orientations",    "object": "schedule_group"  }}