Skip to content
View as Markdown

POST Create Email Pattern​

POST
/email-patterns

Create a reusable email pattern in FluentCRM. The title and content fields are required. The pattern is stored under the current user and receives an auto-generated fluentcrm/... slug.

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)

Request Body​

application/json
JSON
{
"title": "string",
"content": "string",
"category": "string",
"description": "string",
"sync_status": "unsynced"
}

Responses​

Email pattern created successfully.

application/json
JSON
{
"message": "string",
"pattern": {
"id": 0,
"slug": "string",
"title": "string",
"content": "string",
"category": "string",
"description": "string",
"sync_status": "unsynced",
"created_at": "string",
"updated_at": "string"
}
}

Playground​

Authorization
Body

Samples​

Powered by VitePress OpenAPI