Skip to main content
GET
/
v1
/
workspaces
/
{id}
/
whatsapp-templates
List WhatsApp templates
curl --request GET \
  --url https://api.conduit.ai/v1/workspaces/{id}/whatsapp-templates \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "HXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
      "content_sid": "HXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "friendly_name": "arrival_reminder",
      "language": "en",
      "status": "approved",
      "category": "UTILITY",
      "content_type": "twilio/text",
      "rejection_reason": "",
      "body": "Hi {{1}}, your check-in is {{2}}.",
      "variables": {
        "1": "Guest name",
        "2": "Check-in time"
      },
      "created_at": "2026-04-03T03:15:02.000Z",
      "updated_at": "2026-04-03T03:15:04.000Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.conduit.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Path Parameters

id
string
required

Workspace identifier.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Response

Workspace WhatsApp templates

WhatsApp templates stored for the workspace. Use content_sid and variables with proactive WhatsApp contact sends.

data
object[]
required