Details of the agency advertising on behalf of this client account, if applicable.
GET v25.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_clientunsigned int32 | Whether this account is for an agency representing a client |
client_based_in_franceunsigned int32 | Whether the client is based in France |
client_citystring | Client's city |
client_country_codestring | Client's country code |
client_email_addressstring | Client's email address |
client_namestring | Name of the client |
client_postal_codestring | Client's postal code |
client_provincestring | Client's province |
client_streetstring | First line of client's street address |
client_street2string | Second line of client's street address |
has_written_mandate_from_advertiserunsigned int32 | Whether the agency has a written mandate to advertise on behalf of this client |
is_client_paying_invoicesunsigned int32 | Whether the client is paying via invoice |