CaraCara API

Create an SMS template

POST
/sms/templates

Authorization

AuthorizationRequiredBearer <token>

Use your API key (sk_live_* or sk_test_*) as the Bearer token.

In: header

Request Body

application/jsonRequired
nameRequiredstring
bodyRequiredstring

SMS body. Supports template variables like {{firstName}}.

curl -X POST "https://platform.caramedical.com/api/v1/sms/templates" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string",
    "body": "string"
  }'

Template created.