Messaging Feature Review API

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.

Contents

Supported Features

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

Example Request

curl -i -X GET \
 "https://graph.facebook.com/v19.0/me/messaging_feature_review
 ?access_token={PAGE_ACCESS_TOKEN}"

Example Response

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

Response Properties

PropertyTypeDescription

data

Array

An array of all submitted feature submission requests. If no request has been submitted, the array will be empty.

feature

String

The name of the feature.

status

String

The current status of the feature review:

  • PENDING - Feature review has been submitted and pending review.
  • REJECTED - Feature review has been rejected.
  • APPROVED - Feature review has been approved.
  • LIMITED- Feature access has been revoked by our policy enforcement team. For details on why your feature access was revoked, check your Page Support Inbox.