Custom Twilio Accounts
Create Encrypted Key
Calls
Intelligence
Conversational Pathways
- GETGet All Pathways Information
- GETGet Single Pathway Information
- POSTCreate Pathway
- POSTUpdate Pathway
- DELDelete Pathway
- Pathway Chat
- Pathway Versions
- Pathway Folders
Vector Knowledge Bases
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
SMS
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
Custom Twilio Accounts
Create Encrypted Key
Integrate your own Twilio account with Bland. See Enterprise Twilio Integration for more information.
POST
/
v1
/
accounts
curl --request POST \
--url https://api.bland.ai/v1/accounts \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"account_sid": "<string>",
"auth_token": "<string>"
}'
{
"status": "success",
"encrypted_key": "YOUR_ENCRYPTED_KEY"
}
Headers
Your API key for authentication.
Body
Your Twilio account SID.
Your Twilio auth token.
Response
Your encrypted_key
to store and use in future requests.
{
"status": "success",
"encrypted_key": "YOUR_ENCRYPTED_KEY"
}
curl --request POST \
--url https://api.bland.ai/v1/accounts \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"account_sid": "<string>",
"auth_token": "<string>"
}'
{
"status": "success",
"encrypted_key": "YOUR_ENCRYPTED_KEY"
}