Skip to content
Fresh 2026

Extended Credit Invoice Group

Reading

An extended credit invoice group object

Example

HTTPPHP SDKJavaScript SDKAndroid SDKiOS SDK Graph API Explorer

GET /v25.0/{extended-credit-invoice-group-id} 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(
    '/{extended-credit-invoice-group-id}',
    '{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(
    "/{extended-credit-invoice-group-id}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);
/* make the API call */
new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/{extended-credit-invoice-group-id}",
    null,
    HttpMethod.GET,
    new GraphRequest.Callback() {
        public void onCompleted(GraphResponse response) {
            /* handle the result */
        }
    }
).executeAsync();
/* make the API call */
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]\
                               initWithGraphPath:@"/{extended-credit-invoice-group-id}"\
                                      parameters:params\
                                      HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,\
                                      id result,\
                                      NSError *error) {\
    // Handle the result\
}];

If you want to learn how to use the Graph API, read our Using Graph API guide.

Parameters

This endpoint doesn't have any parameters.

Fields

FieldDescription
id<br>numeric stringID<br>Default
auto_enroll<br>boolShows if the adaccount using the current credit will be enrolled into the invoice group automatically
customer_po_number<br>stringThe customer PO number of this invoice group assigned by the customer creating or editing the group
email<br>ExtendedCreditEmailThe invoice email object associated with this invoice group and only allow one email address associated with one group
emails<br>list<string>The invoice emails attached to the invoice group
name<br>stringExtended credit invoice group name assigned<br>Default

Error Codes

ErrorDescription
100Invalid parameter

Creating

You can't perform this operation on this endpoint.

Updating

You can update an ExtendedCreditInvoiceGroup by making a POST request to /{extended_credit_invoice_group_id}.

Parameters

ParameterDescription
emails<br>array<string>The emails associated to the extended credit invoice group
name<br>stringExtended credit invoice group name assigned

Return Type

This endpoint supports read-after-write and will read the node represented by id in the return type.

Struct {

id: numeric string,

}

Error Codes

ErrorDescription
100Invalid parameter

Deleting

You can delete an ExtendedCreditInvoiceGroup by making a DELETE request to /{extended_credit_invoice_group_id}.

Parameters

This endpoint doesn't have any parameters.

Return Type

Struct {

success: bool,

}

Error Codes

ErrorDescription
100Invalid parameter

You can dissociate an ExtendedCreditInvoiceGroup from an ExtendedCreditInvoiceGroup by making a DELETE request to /{extended_credit_invoice_group_id}/ad_accounts.

Parameters

ParameterDescription
ad_account_id<br>stringThe id of the ad account that will be removed from the invoice group<br>Required

Return Type

Struct {

success: bool,

}

Error Codes

ErrorDescription
49002Cannot delete the ad account from the invoice group