WhatsAppBusinessAccountPricingAnalytics
GET /v24.0/{whats-app-business-account-id}/pricing_analytics HTTP/1.1
Host: graph.facebook.com/* PHP SDK v5.0.0 */
/* make the API call */
try {
// Returns a `Facebook\FacebookResponse` object
$response = $fb->get(
'/{whats-app-business-account-id}/pricing_analytics',
'{access-token}'
);
} catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: ' . $e->getMessage();
exit;
} catch(Facebook\Exceptions\FacebookSDKException $e) {
echo 'Facebook SDK returned an error: ' . $e->getMessage();
exit;
}
$graphNode = $response->getGraphNode();
/* handle the result *//* make the API call */
FB.api(
"/{whats-app-business-account-id}/pricing_analytics",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{whats-app-business-account-id}/pricing_analytics",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/{whats-app-business-account-id}/pricing_analytics"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];| Parameter | Beschreibung |
|---|---|
country_codesarray<string> | Standardwert: []country_codes |
dimensionsarray<enum {PHONE, COUNTRY, PRICING_TYPE, PRICING_CATEGORY, TIER}> | Standardwert: []dimensions |
endint64 | end erforderlich |
granularityenum {HALF_HOUR, DAILY, MONTHLY} | granularity erforderlich |
metric_typesarray<enum {VOLUME, COST}> | Standardwert: []metric_types |
phone_numbersarray<string> | Standardwert: []phone_numbers |
pricing_categoriesarray<enum {MARKETING, UTILITY, AUTHENTICATION, SERVICE, AUTHENTICATION_INTERNATIONAL, GROUP_MARKETING, GROUP_UTILITY, GROUP_SERVICE, MARKETING_LITE, MARKETING_LITE_DYNAMIC, GROUP_MARKETING_LITE}> | Standardwert: []pricing_categories |
pricing_typesarray<enum {REGULAR, FREE_ENTRY_POINT, FREE_CUSTOMER_SERVICE, FREE_GROUP_CUSTOMER_SERVICE}> | Standardwert: []pricing_types |
startint64 | start erforderlich |
tiersarray<string> | Standardwert: []tiers |
Beim Lesen dieses Edge wird ein Ergebnis im JSON-Format ausgegeben:
{ "
data": [], "paging": {} }
datapaging| Fehler | Beschreibung |
|---|---|
| 200008 | WhatsApp Business Account has no linked phone numbers. |
| 100 | Invalid parameter |
| 2500 | Error parsing graph query |