Skip to main content
POST
/
api
/
v1
/
channel
/
twilio
Create Twilio Auth
curl --request POST \
  --url 'https://api.example.com/api/v1/channel/twilio?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "twilio_account_sid": "<string>",
  "twilio_auth_token": "<string>"
}
'
{
  "message": "Data created successfully",
  "meta": {},
  "data": {
    "name": "<string>",
    "twilio_account_sid": "<string>",
    "twilio_auth_token": "<string>"
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Body

application/json
name
string | null
required
twilio_account_sid
string | null
required
twilio_auth_token
string | null
required

Response

Successful Response

message
string | null
default:Data created successfully
meta
Meta · object
data
ITwilloAuthCreate · object