POST
/
v1
/
accounts
curl --request POST \
  --url https://app.luly.ai/api/v1/accounts \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "account_sid": "<string>",
  "auth_token": "<string>"
}'
{
    "status": "success",
    "encrypted_key": "YOUR_ENCRYPTED_KEY"
}

Headers

authorization
string
required

Your API key for authentication.

Body

account_sid
string
required

Your Twilio account SID.

auth_token
string
required

Your Twilio auth token.

Response

Your encrypted_key to store and use in future requests.

{
    "status": "success",
    "encrypted_key": "YOUR_ENCRYPTED_KEY"
}