SMS
Update SMS Number
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
SMS
Update SMS Number
Update your SMS agent’s configuration.
POST
/
v1
/
sms
/
update
curl --request POST \
--url https://api.bland.ai/v1/sms/update \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"phone_number": "<string>",
"prompt": "<string>",
"ignore_keywords": [
{}
],
"temperature": 123
}'
{
"status": "Prompt updated"
}
Headers
Your API key for authentication.
Body
The phone number to update.
The prompt for the AI to use when replying.
Pass in an array of strings, that if present, the AI should not respond to. Set to null
to disable.
The temperature for prompt and underlying model.
{
"status": "Prompt updated"
}
curl --request POST \
--url https://api.bland.ai/v1/sms/update \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"phone_number": "<string>",
"prompt": "<string>",
"ignore_keywords": [
{}
],
"temperature": 123
}'
{
"status": "Prompt updated"
}