POST
/
v1
/
numbers
/
update
curl --request POST \
  --url https://api.vocode.dev/v1/numbers/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "outbound_only": true,
  "example_context": {},
  "label": "<string>",
  "inbound_agent": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "active": true,
  "label": "<string>",
  "inbound_agent": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "prompt": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "content": "<string>",
      "collect_fields": [
        {
          "field_type": "field_type_email",
          "label": "<string>",
          "name": "<string>",
          "description": "<string>"
        }
      ],
      "context_endpoint": "<string>",
      "prompt_template": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "label": "<string>",
        "required_context_keys": [
          "<string>"
        ]
      }
    },
    "language": "en",
    "actions": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "action_transfer_call",
        "config": {
          "phone_number": "<string>"
        },
        "action_trigger": {
          "type": "action_trigger_function_call",
          "config": {}
        }
      }
    ],
    "voice": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "voice_azure",
      "voice_name": "<string>",
      "pitch": 123,
      "rate": 123
    },
    "initial_message": "<string>",
    "webhook": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "subscriptions": [
        "event_message"
      ],
      "url": "<string>",
      "method": "GET"
    },
    "vector_database": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "vector_database_pinecone",
      "index": "<string>",
      "api_key": "<string>",
      "api_environment": "<string>"
    },
    "interrupt_sensitivity": "low",
    "context_endpoint": "<string>",
    "noise_suppression": true,
    "endpointing_sensitivity": "auto",
    "ivr_navigation_mode": "default",
    "conversation_speed": 123,
    "initial_message_delay": 123,
    "openai_model_name_override": "<string>",
    "ask_if_human_present_on_idle": true,
    "openai_account_connection": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "credentials": {
        "openai_api_key": "<string>"
      },
      "type": "account_connection_openai"
    },
    "run_do_not_call_detection": true,
    "llm_temperature": 123
  },
  "outbound_only": true,
  "example_context": {},
  "number": "<string>",
  "telephony_provider": "vonage",
  "telephony_account_connection": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "credentials": {
      "twilio_account_sid": "<string>",
      "twilio_auth_token": "<string>"
    },
    "type": "account_connection_twilio",
    "steering_pool": [
      "<string>"
    ],
    "account_supports_any_caller_id": true
  }
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

phone_number
string
required

Body

application/json
outbound_only
example_context
object
label
inbound_agent

Response

200 - application/json
id
string
required
user_id
string
required
active
boolean
default: true
label
string
default:
inbound_agent
object
required
outbound_only
boolean
default: false
example_context
object
number
string
required
telephony_provider
enum<string>
default: vonage
Available options:
vonage,
twilio
telephony_account_connection
object