Skip to main content
GET
/
api
/
v1
/
templates
List WhatsApp templates
curl --request GET \
  --url https://app.flowella.io/api/v1/templates \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "language": "<string>",
      "wabaId": "<string>",
      "whatsappChannelId": "<string>",
      "metaTemplateId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Organization API key (flo_…). Paste the full key; Scalar sends Authorization: Bearer <key>.

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string
Required string length: 1 - 128
status
enum<string>
Available options:
DRAFT,
PENDING,
APPROVED,
REJECTED,
PAUSED,
DISABLED
whatsappChannelId
string<cuid>
Required string length: 1 - 200

Response

Paginated templates

items
object[]
required
nextCursor
string