Skip to main content
POST
/
api
/
v1
/
organizations
/
telephony-configs
/
{config_id}
/
phone-numbers
/
{phone_number_id}
/
set-default-caller
Set Default Caller Id
curl --request POST \
  --url https://app.dograh.com/api/v1/organizations/telephony-configs/{config_id}/phone-numbers/{phone_number_id}/set-default-caller
{
  "id": 123,
  "telephony_configuration_id": 123,
  "address": "<string>",
  "address_normalized": "<string>",
  "address_type": "<string>",
  "is_active": true,
  "is_default_caller_id": true,
  "extra_metadata": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "country_code": "<string>",
  "label": "<string>",
  "inbound_workflow_id": 123,
  "inbound_workflow_name": "<string>",
  "provider_sync": {
    "ok": true,
    "message": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dograh.com/llms.txt

Use this file to discover all available pages before exploring further.

Outbound calls placed through this configuration that don’t specify a from_number use the default caller. Setting a new default automatically clears the previous one β€” at most one phone number per configuration can be the default caller.

Headers

authorization
string | null
X-API-Key
string | null

Path Parameters

config_id
integer
required
phone_number_id
integer
required

Response

Successful Response

id
integer
required
telephony_configuration_id
integer
required
address
string
required
address_normalized
string
required
address_type
string
required
is_active
boolean
required
is_default_caller_id
boolean
required
extra_metadata
Extra Metadata Β· object
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
country_code
string | null
label
string | null
inbound_workflow_id
integer | null
inbound_workflow_name
string | null
provider_sync
ProviderSyncStatus Β· object

Result of pushing a phone-number change to the upstream provider.

Returned alongside create/update responses when the route attempted to sync inbound webhook configuration. ok=False is a warning, not a fatal error β€” the DB write succeeded.