Channel Health
GET
/platform/v1/channels/{channel_id}/health
const url = 'https://example.com/platform/v1/channels/1/health';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/platform/v1/channels/1/healthReturn live + cached health diagnostics for a WhatsApp channel.
Merges Meta’s live phone-number GET (health_status, quality_rating,
messaging_limit_tier, name_status, code_verification_status)
with the channel’s DB-cached snapshot (last written by the inbound
phone_number_quality_update webhook). Adds the derived booleans
webhook_configured and token_present so the developer can program
against operational readiness without seeing the token.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” channel_id
required
Channel Id
integer
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}