Skip to content

Messaging Feature Review API

Updated: Jun 17, 2026

The Messaging Feature Review API allows you to programmatically check the feature submission status of Page-level Platform features.

Permissions

A Page access token with pages_messaging permission is required to interact with this endpoint.

Supported features

The Messaging Feature Review API may be queried for submission status of the following features:

Sample request

curl -i -X GET "https://graph.facebook.com/<LATEST_API_VERSION>/me/messaging_feature_review?access_token=<PAGE_ACCESS_TOKEN>"

Sample response

{  
  "data": [  
    {  
      "feature": "subscription_messaging",  
      "status": "rejected"  
    },  
    {  
      "feature": "gender",  
      "status": "pending"  
    },  
    {  
      "feature": "locale",  
      "status": "limited"  
    },  
    {  
      "feature": "time_zone",  
      "status": "approved"  
    }  
  ]  
}

Response properties

PropertyTypeDescription
dataArrayAn array of all submitted feature submission requests. If no request has been submitted, the array is empty.
featureStringThe name of the feature.
statusStringThe current status of the feature review: PENDING (submitted and pending review), REJECTED (review has been rejected), APPROVED (review has been approved), LIMITED (feature access has been revoked by the policy enforcement team — check your Page Support Inbox for details).

Unofficial mirror for reference/search purposes. All content originates from developers.facebook.com — see the source link at the top of each page. Machine-readable indexes: llms.txt · llms-full.txt · About