Zaptickdocs
RCS

rcs.templates

Read access to the RCS templates registered against your Jio agent. Create and submit templates from the Zaptick dashboard — API-driven template creation ships after Jio exposes a public submission endpoint.

#Endpoints

  • GET/v1/rcs/templatesList approved RCS templates for your workspace.
  • GET/v1/rcs/templates/:idFetch a single RCS template with its full content payload.
GET/v1/rcs/templates

List approved RCS templates for your workspace.

SDK
TypeScript
const { templates } = await zaptick.rcs.templates.list({
  status: 'approved',
  category: 'marketing',
  limit: 20,
});
Response
JSON
{
  "success": true,
  "templates": [
    {
      "id": "64f…",
      "name": "order_shipped",
      "category": "transactional",
      "status": "approved",
      "variables": ["{{1}}", "{{2}}"],
      "createdAt": "2026-02-01T12:00:00Z",
      "updatedAt": "2026-02-14T08:21:03Z"
    }
  ],
  "total": 14,
  "page": 1,
  "limit": 20
}
GET/v1/rcs/templates/:id

Fetch a single RCS template with its full content payload.

SDK
TypeScript
const { template } = await zaptick.rcs.templates.get('64f…');