Creating a Creditor#
In this step of the GoCardless Embed guide you will create a creditor to represent one of your merchants.
By having a creditor for each merchant you will be able to pay out separately for each creditor, customise the beneficiary name the payer sees, and perform reconciliation on a per-merchant basis.
POST /creditors#
You can create a creditor by performing a POST request to the /creditors endpoint. The required parameters are:
| Parameter | Description |
|---|---|
| name | The trading name of the creditor. |
| creditor_type | The type of business of the creditor. One of: individual, company, charity, partnership, and trust. |
| country_code | The country that the creditor is registered in, as a ISO 3166-1 alpha-2 code. |
Examples of how to make this request using the GoCardless client libraries:
The API will respond with a creditor object containing a creditor ID starting with 'CR'. This ID will be used in subsequent steps.
For more details, see the API reference docs for this endpoint.