CalryOTA Docs
Channels

Create a workspace channel

Creates a channel for a workspace. Requires the configured master token.

POST
/api/v1/channels

Authorization

x-master-token
x-master-token<token>

In: header

Header Parameters

x-master-token*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/channels" \  -H "x-master-token: string" \  -H "Content-Type: application/json" \  -d '{    "workspaceID": "string",    "name": "NUITEE",    "markupPercentage": 0  }'
{
  "id": "string",
  "workspaceID": "string",
  "name": "NUITEE",
  "markupPercentage": 0
}