Enables one to retrieve the call analytics data for this WhatsApp Business Account
GET /v25.0/{whats-app-business-account-id}/call_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}/call_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}/call_analytics",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/{whats-app-business-account-id}/call_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}/call_analytics"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];| Parameter | Description |
|---|---|
country_codesarray<string> | Default value: []Country codes to receive analytics for |
dimensionsarray<enum {UNKNOWN, PHONE, COUNTRY, DIRECTION, TIER}> | Default value: []Dimensions to receive analytics for |
directionsarray<enum {UNKNOWN, BUSINESS_INITIATED, USER_INITIATED}> | Default value: []Call directions to receive analytics for |
endint64 | End time Required |
granularityenum {HALF_HOUR, DAILY, MONTHLY} | What granularity to receive analytics for Required |
metric_typesarray<enum {UNKNOWN, COUNT, AVERAGE_DURATION, COST}> | Default value: []Metric types to receive analytics for |
phone_numbersarray<string> | Default value: []Phone numbers to receive analytics for |
startint64 | Start time Required |
tiersarray<string> | Default value: []tiers |
Reading from this edge will return a JSON formatted result:
{ "
data": [], "paging": {} }
datapaging| Error | Description |
|---|---|
| 100 | Invalid parameter |