The Messaging Feature Review API allows you to programmatically check the feature submission status of Page-level Platform features.
A page access token with pages_messaging
permission is required to interact with this endpoint.
The Messaging Feature Review API may be queried for submission status of the following features:
curl -i -X GET \
"https://graph.facebook.com/v21.0
/me/messaging_feature_review
?access_token={PAGE_ACCESS_TOKEN}"
{
"data": [
{
"feature": "subscription_messaging",
"status": "rejected"
},
{
"feature": "gender",
"status": "pending"
},
{
"feature": "locale",
"status": "limited"
},
{
"feature": "time_zone",
"status": "approved"
}
]
}
Property | Type | Description |
---|---|---|
| Array | An array of all submitted feature submission requests. If no request has been submitted, the array will be empty. |
| String | The name of the feature. |
| String | The current status of the feature review:
|