Accelerate the business customer creation process by retrieving a dynamic configuration blueprint. This foundational template provides all available options—including office locations, staff assignments, products, legal forms, and corporate business lines—ensuring your application captures precisely the data required by your specific institution. By utilizing these pre-defined options, you ensure valid data entry and a seamless transition from registration to activation.
This template provides various options such as available offices, staff members, saving products, legal forms, business line classifications, and address-related details.
How to Use Template Option IDs in Create Business Customer
The response from this API contains multiple *Options arrays (e.g., clientNonPersonConstitutionOptions, officeOptions, clientTypeOptions). Each option object includes an id field. These id values must be passed as the corresponding field values in the Create Business Customer request payload.
| Template Option Array | Pick the id from | Use as field in Create Customer |
|---|---|---|
officeOptions | officeOptions[].id | officeId |
clientTypeOptions | clientTypeOptions[].id | clientTypes[] |
clientClassificationOptions | clientClassificationOptions[].id | clientClassificationId |
clientLegalFormOptions | clientLegalFormOptions[].id | legalFormId |
clientNonPersonConstitutionOptions | clientNonPersonConstitutionOptions[].id | constitutionId |
clientNonPersonMainBusinessLineOptions | clientNonPersonMainBusinessLineOptions[].id | mainBusinessLineId |
countryOptions | countryOptions[].id | countryOfIncorporationId |
address.countryIdOptions | address.countryIdOptions[].id | address[].countryId |
address.stateProvinceIdOptions | address.stateProvinceIdOptions[].id | address[].stateProvinceId |
address.addressTypeIdOptions | address.addressTypeIdOptions[].id | address[].addressTypeId |
Example: If the template returns clientNonPersonConstitutionOptions with [{ "id": 8679, "name": "Partnership Firm" }], then to create a partnership firm, pass "constitutionId": 8679 in the Create Business Customer request body.

