Update Campaign
Update an existing campaign. Only the fields sent are updated.
PATCH https://api.platica.mx/v1/campaigns/{campaignId} URL parameters
| Parameter | Type | Description | Requirement |
|---|---|---|---|
campaignId | string | Unique identifier of the campaign | required |
Request Body
All fields are optional:
{
"title": "Promo Verano 2025 - Actualizada",
"category": "marketing",
"platform": "whatsapp",
"templateName": "promo_verano_v2",
"owners": ["marketing@empresa.com"]
} Available parameters
| Parameter | Type | Description |
|---|---|---|
title | string | Campaign title |
category | string | "marketing" or "utility" |
platform | string | Send platform |
templateName | string | Template name (validated) |
message | string | Message associated with the campaign |
template | string | Serialized representation of the template |
language | string | Template language |
templateLanguage | string | Original language of the validated template |
wabaId | string | Associated WABA |
owners | string[] | List of responsible-user emails |
Response 200 OK
{
"status": "success",
"message": "Campaign updated successfully",
"data": {
"id": "EgIOvaKPmrQFfuh6D023",
"title": "Promo Verano 2026 - VIP",
"category": "marketing",
"platform": "whatsapp",
"templateName": "promo_verano_2026_vip",
"owners": ["marketing@empresa.com"],
"lastUpdate": "2026-03-03T00:41:38.326Z"
}
}