Create Campaign
Create a new campaign in your workspace.
POST https://api.platica.mx/v1/campaigns Request Body
{
"title": "Promo Verano 2026",
"category": "marketing",
"platform": "whatsapp",
"templateName": "promo_verano_2026",
"owners": ["marketing@empresa.com", "crm@empresa.com"]
} Body parameters
| Parameter | Type | Description | Requirement | Default |
|---|---|---|---|---|
title | string | Campaign title (unique within the workspace) | required | - |
category | string | Category: "marketing" or "utility" | required | - |
platform | string | Send platform | optional | "whatsapp" |
templateName | string | Name of the Meta/WhatsApp template (validated against the workspace) | optional | - |
message | string | Message associated with the campaign | optional | - |
template | string | Serialized representation of the template | optional | - |
language | string | Template language | optional | - |
templateLanguage | string | Original language of the validated template | optional | - |
wabaId | string | Associated WABA | optional | - |
owners | string[] | List of responsible-user emails | optional | [] |
Response 201 Created
{
"status": "success",
"message": "Campaign created successfully",
"data": {
"id": "pV6PvG2lc8ChQb2VmETr",
"title": "Promo Verano 2026",
"category": "marketing",
"platform": "whatsapp",
"templateName": "promo_verano_2026",
"owners": ["marketing@empresa.com", "crm@empresa.com"],
"language": "es_MX",
"templateLanguage": "es_MX",
"wabaId": "waba_xyz",
"creationDate": "2026-03-02T21:33:36.049Z",
"lastUpdate": "2026-03-02T21:33:36.050Z"
}
}