Skip to main content
POST
/
dialin
/
pinlessCallUpdate
/dialin/pinlessCallUpdate
curl --request POST \
  --url https://api.daily.co/v1/dialin/pinlessCallUpdate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "callId": "<string>",
  "callDomain": "<string>",
  "sipUri": "<string>"
}
'
{
  "ok": "true"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
callId
string

CallId is represented by UUID and represents the sessionId in the SIP Network. This is obtained from the webhook payload.

callDomain
string

Call Domain is represented by UUID and represents your Daily Domain on the SIP Network. This is obtained from the webhook payload.

sipUri
string

This SIP URI is associated to the Daily Room that you want to forward the SIP Interconnect call to.

Response

200