agents
channels.twilio.numbers
agents.test
conversations
data_sources
events
incidents
insights
insights.folders
insights.workflows
insights.tools
custom_messages
permissions
prompts
session_labels
sessions.transcript
sessions.full-summary
sessions.latency
session_debug
channels.targets
directory
dashboards
organizations
outbound.batches
- GETList Outbound Communication Batches
- POSTCreate Outbound Communication Batch
- GETGet Outbound Communication Batch
- PUTUpdate Outbound Communication Batch
- DELDelete Outbound Communication Batch
- POSTUpload Outbound Communication Batch
- GETFetch Outbound Communication Batch Results
- POSTCreate Outbound Communication Request
- POSTDelete Requests By List Of Reference Ids
outbound.campaigns
language_groups
organizations
Create Organization
Create a new organization.
POST
/
api
/
v1
/
organizations
/
Copy
Ask AI
import { openAsBlob } from "node:fs";
import { SyllableSDK } from "syllable-sdk";
const syllableSDK = new SyllableSDK({
apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});
async function run() {
const result = await syllableSDK.organizations.create({
logo: await openAsBlob("example.file"),
displayName: "My Great Org",
description: "An organization that does great things with agentic AI",
domains: "mygreatorg.com,mygreatorg.org",
});
// Handle the result
console.log(result);
}
run();
Copy
Ask AI
{
"display_name": "My Great Org",
"description": "An organization that does great things with agentic AI.",
"domains": "mygreatorg.com,myothergreatorg.org",
"id": 1,
"last_updated_comments": "Updated to add an additional domain",
"last_updated": "2023-11-07T05:31:56Z",
"last_updated_by": "<string>",
"logo_str": "<string>"
}
Authorizations
Body
multipart/form-data
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
import { openAsBlob } from "node:fs";
import { SyllableSDK } from "syllable-sdk";
const syllableSDK = new SyllableSDK({
apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});
async function run() {
const result = await syllableSDK.organizations.create({
logo: await openAsBlob("example.file"),
displayName: "My Great Org",
description: "An organization that does great things with agentic AI",
domains: "mygreatorg.com,mygreatorg.org",
});
// Handle the result
console.log(result);
}
run();
Copy
Ask AI
{
"display_name": "My Great Org",
"description": "An organization that does great things with agentic AI.",
"domains": "mygreatorg.com,myothergreatorg.org",
"id": 1,
"last_updated_comments": "Updated to add an additional domain",
"last_updated": "2023-11-07T05:31:56Z",
"last_updated_by": "<string>",
"logo_str": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.