Skip to main content
GET
/
domain-dialin-config
/domain-dialin-config
curl --request GET \
  --url https://api.daily.co/v1/domain-dialin-config \
  --header 'Authorization: Bearer <token>'
{
  "total_count": 2,
  "data": [
    {
      "id": "bfd0c52b-3a2a-4269-80ce-cae9eef55536",
      "type": "pinless_dialin",
      "config": {
        "sip_uri": "user--1739943585193@daily-<domainId>-stage-pinless-sip.dapp.signalwire.com",
        "name_prefix": "new-api"
      }
    },
    {
      "id": "0cb313e1-211f-4be0-833d-8c7305b19902",
      "type": "pin_dialin",
      "config": {
        "sip_uri": null,
        "name_prefix": "new-api-pin",
        "phone_number": "+12555599999"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer<int32>
ending_before
string
starting_after
string
phone_number
string
phone_numbers
string

a comma separated list of phone numbers to filter by. The filter will match any phone number that contains the provided numbers as a substring (partial match).

sip_username
string

The sip username associated with this dialin config (only the username part of the sip uri)

name_prefix
string
type
string

The type of dialin config. It can be pinless_dialin or pin_dialin.

Response

200

total_count
integer
default:0
Example:

3

data
object[]