Learning stage information for an ad set.
GET v25.0/...?fields={fieldname_of_type_AdCampaignLearningStageInfo} 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(
'...?fields={fieldname_of_type_AdCampaignLearningStageInfo}',
'{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(
"...?fields={fieldname_of_type_AdCampaignLearningStageInfo}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"...?fields={fieldname_of_type_AdCampaignLearningStageInfo}",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
}
}
).executeAsync();/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"...?fields={fieldname_of_type_AdCampaignLearningStageInfo}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];| Field | Description |
|---|---|
attribution_windowslist<enum> | Number of days between when a person viewed or clicked your ad and subsequently took action. By default, the attribution window is set to 1-day view and 28-day click. |
conversionsunsigned integer | Number of conversions the ad set generated since the time of its last significant edit during the learning phase. Significant edits cause ad sets to reenter the learning phase. If the ad set has exited the learning phase successfully, this number will return zero. |
dynamic_lp_conversions_thresholdunsigned integer | New conversions threshold for dynamic learning phase status |
dynamic_lp_days_thresholdunsigned integer | Day to exit for dynamic learning phase |
dynamic_lp_statusenum | dynamic learning phase status |
last_sig_edit_tsinteger | Timestamp of the last significant edit that caused ad set to reenter the learning phase. |
statusenum | Learning Phase progress for the ad set. Values:
|