Channels · WhatsApp · Templates

Template Meta Sync

Base URL & auth

  • Prefix: /api/business/public on https://stage.api.engagive.io (full base: https://stage.api.engagive.io/api/business/public).
  • Header: Authorization: Bearer <token> — create the token under Profile → API access token in the business app.
  • See also: Authentication, Errors & responses.

These actions talk to Meta / WhatsApp for the given template language: submit for review or remove from Meta while keeping Engagive data.

POST

Submit to Meta

Required permission: WhatsApp Templates — Edit

Submits draft content to WhatsApp / Meta for review when applicable.

Path
/api/business/public/channels/whatsapp/accounts/:accountId/templates/:templateCode/contents/:langCode/submit-meta
Example success response (JSON)
{
  "success": true,
  "message": "Content synced with Meta",
  "data": {
    "id": 501,
    "lang_code": "en",
    "meta_status": "submitted"
  }
}

Try it

Runs in your browser — token is not stored

If the request fails with a network / CORS error, your API may not allow browser calls from this site. Use curl, Postman, or your server instead. See Postman.

Full request URL
POST https://stage.api.engagive.io/api/business/public/channels/whatsapp/accounts/1/templates/order_shipped/contents/en_US/submit-meta
POST

Delete from Meta

Required permission: WhatsApp Templates — Edit

Removes the template language from Meta while retaining the local content record.

Path
/api/business/public/channels/whatsapp/accounts/:accountId/templates/:templateCode/contents/:langCode/delete-meta
Example success response (JSON)
{
  "success": true,
  "message": "Content synced with Meta",
  "data": {
    "id": 501,
    "lang_code": "en",
    "meta_status": "submitted"
  }
}

Try it

Runs in your browser — token is not stored

If the request fails with a network / CORS error, your API may not allow browser calls from this site. Use curl, Postman, or your server instead. See Postman.

Full request URL
POST https://stage.api.engagive.io/api/business/public/channels/whatsapp/accounts/1/templates/order_shipped/contents/en_US/delete-meta