Details of the agency advertising on behalf of this client account, if applicable.
GET v21.0/...?fields={fieldname_of_type_AgencyClientDeclaration} 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_AgencyClientDeclaration}',
'{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_AgencyClientDeclaration}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"...?fields={fieldname_of_type_AgencyClientDeclaration}",
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_AgencyClientDeclaration}"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];
Field | Description |
---|---|
agency_representing_client unsigned int32 | Whether this account is for an agency representing a client |
client_based_in_france unsigned int32 | Whether the client is based in France |
client_city string | Client's city |
client_country_code string | Client's country code |
client_email_address string | Client's email address |
client_name string | Name of the client |
client_postal_code string | Client's postal code |
client_province string | Client's province |
client_street string | First line of client's street address |
client_street2 string | Second line of client's street address |
has_written_mandate_from_advertiser unsigned int32 | Whether the agency has a written mandate to advertise on behalf of this client |
is_client_paying_invoices unsigned int32 | Whether the client is paying via invoice |