GET Single Email Pattern​
GET
/email-patterns/{id}
Fetch one pattern by id.
Required capability: fcrm_read_emails
Enforced by EmailPatternPolicy::verifyRequest(), the policy default for this route group.
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​
Path Parameters
id*
Pattern id.
Type
Requiredinteger
Responses​
The requested pattern.
application/json
JSON
{
"pattern": {
"id": 0,
"slug": "string",
"title": "string",
"content": "string",
"category": "string",
"description": "string",
"sync_status": "string",
"created_at": "string",
"updated_at": "string"
}
}