Get Campaign
Returns the detailed information of a campaign by ID.
GET https://api.platica.mx/v1/campaigns/{campaignId}
URL parameters
| Parameter | Type | Description | Requirement |
campaignId | string | Unique identifier of the campaign | required |
Response 200 OK
{
"workspaces": [
{
"id": "ws_abc123",
"name": "Empresa Principal",
"campaignsCount": 1,
"campaigns": [
{
"id": "EgIOvaKPmrQFfuh6D023",
"title": "Promo Verano",
"category": "marketing",
"platform": "whatsapp",
"templateName": "promo_verano_2026",
"owners": [
"marketing@empresa.com"
],
"language": "es_MX",
"wabaId": "waba_xyz",
"creationDate": "2026-02-14T10:00:00.000Z",
"lastUpdate": "2026-02-14T12:00:00.000Z"
}
]
}
]
}
Response fields
| Field | Description |
workspaces | List of workspaces; each one includes the requested campaign if it exists |
Each item in workspaces[]
| Field | Description |
id | Workspace ID |
name | Workspace name |
campaignsCount | Number of campaigns in the campaigns array |
campaigns | List with the campaign's details |
Each item in campaigns[]
| Field | Description |
id | Internal campaign ID |
title | Campaign title |
category | Category: marketing or utility |
platform | Send platform |
templateName | Name of the associated template when one exists |
owners | List of responsible-user emails |
language | Template language when applicable |
wabaId | WABA identifier when applicable |
creationDate | Creation date in ISO 8601 format |
lastUpdate | Last update date in ISO 8601 format |