Get Campaign

Returns the detailed information of a campaign by ID.

GET https://api.platica.mx/v1/campaigns/{campaignId}

URL parameters

ParameterTypeDescriptionRequirement
campaignIdstringUnique identifier of the campaignrequired

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

FieldDescription
workspacesList of workspaces; each one includes the requested campaign if it exists

Each item in workspaces[]

FieldDescription
idWorkspace ID
nameWorkspace name
campaignsCountNumber of campaigns in the campaigns array
campaignsList with the campaign's details

Each item in campaigns[]

FieldDescription
idInternal campaign ID
titleCampaign title
categoryCategory: marketing or utility
platformSend platform
templateNameName of the associated template when one exists
ownersList of responsible-user emails
languageTemplate language when applicable
wabaIdWABA identifier when applicable
creationDateCreation date in ISO 8601 format
lastUpdateLast update date in ISO 8601 format