Skip to content
View as Markdown

GET List Email Patterns​

GET
/email-patterns

Retrieve paginated reusable email patterns stored in FluentCRM. Supports simple text search against the underlying pattern value payload and returns normalized pattern objects.

Authorizations​

ApplicationPasswords

WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password

Type
API Key (header: Authorization)

Parameters​

Query Parameters

search

Search term applied against the stored pattern value payload.

Type
string
per_page

Number of patterns per page.

Type
integer
Default
15
page

Page number for pagination.

Type
integer
Default
1

Responses​

Paginated list of email patterns.

application/json
JSON
{
"patterns": {
"data": [
{
"id": 0,
"slug": "string",
"title": "string",
"content": "string",
"category": "string",
"description": "string",
"sync_status": "unsynced",
"created_at": "string",
"updated_at": "string"
}
],
"total": 0
}
}

Playground​

Authorization
Variables
Key
Value

Samples​

Powered by VitePress OpenAPI