WhatsApp Cloud API · error code

WhatsApp error 132068: Flow is blocked

ConfigurationHTTP 400Templates & Flows

Last verified against Meta for Developers - Cloud API error codes

What WhatsApp returns
Flow is in blocked state.

What error 132068 means

Code 132068 applies to WhatsApp Flows, the interactive multi-screen forms you can attach to messages and templates. It means the Flow you referenced is in a BLOCKED state, so messages that try to launch it are refused. Meta blocks a Flow when its health checks fail, most commonly because the endpoint your Flow depends on is unreachable, returns errors, or does not pass the encryption and signature validation that Flows require. A Flow can also be blocked if its JSON fails validation after a change.

Until the underlying issue is corrected and the Flow returns to a healthy state, every send that uses it fails with 132068. The rest of your messaging, including other templates and other Flows, is unaffected.

The recipient, token, and the template wrapping the Flow are not the problem; the Flow itself needs attention.

Why it happens

  • The Flow's data endpoint is down, slow, or returning non-200 responses to Meta's health checks.
  • Endpoint responses that are not correctly encrypted or signed per the Flows endpoint specification.
  • Invalid Flow JSON after an edit, or a reference to a missing screen.
  • The business public key for Flows encryption not set or rotated without updating the endpoint.
  • A Flow left in draft or deprecated state while the template still references it.

How to fix WhatsApp error 132068

  1. 1Open the Flow in WhatsApp Manager (or GET /{flow-id}?fields=status,validation_errors,health_status) and read the blocked reason.
  2. 2Fix the endpoint: confirm it is reachable from the internet, responds quickly, and implements the request decryption and response encryption exactly as documented.
  3. 3Correct any validation errors in the Flow JSON and publish a new version.
  4. 4Verify the business public key is set on the phone number and matches the private key your endpoint uses.
  5. 5Once health_status is healthy, retry the send.

How to stop it recurring

Monitor the Flow endpoint like any production API: uptime checks, latency alerts, and a signed-response test in CI. Keep the encryption keypair under configuration management and rotate it in a controlled way. Publish Flow changes through a staging Flow first so a broken edit cannot block the production one. Flow health failures often masquerade as webhook problems; the endpoint checklist in the webhook debugging guide applies to Flow endpoints too. The throttled halfway state is 132069.

Official reference: Meta for Developers - Cloud API error codes. See all WhatsApp error codes or the WhatsApp limits and quotas.

Related codes

Error 132068 - quick answers

What does WhatsApp error 132068 mean?

Code 132068 applies to WhatsApp Flows, the interactive multi-screen forms you can attach to messages and templates. It means the Flow you referenced is in a BLOCKED state, so messages that try to launch it are refused.

How do I fix WhatsApp error 132068?

1. Open the Flow in WhatsApp Manager (or GET /{flow-id}?fields=status,validation_errors,health_status) and read the blocked reason. 2. Fix the endpoint: confirm it is reachable from the internet, responds quickly, and implements the request decryption and response encryption exactly as documented. 3. Correct any validation errors in the Flow JSON and publish a new version. 4. Verify the business public key is set on the phone number and matches the private key your endpoint…

Stop debugging WhatsApp by hand

Connect the channel through Conferbot: tokens, webhooks and retries are handled, failures show as readable status.