# How to setup the Registering Institution ID with Budget Account

* Registering Institution ID is a dynamic field in ID Account Mapper and Voucher service (populated in database when passed as part of create/update API headers).&#x20;
* It is configured in bulk processor along with program ID
* Default value for the field in bulk processor is “SocialWelfare”
* To access features in vouchers service (like cancel,suspend and redeem),  it requires Registering Institution ID and callback URL.
* [BD-011](https://github.com/openMF/ph-ee-integration-test/blob/1c601dda293fb37475ba3b1aba326e54625daaf8/src/test/java/resources/batch.feature#L147) test case describes the payer resolution using registering institution ID with budget account info
* Configuration of Registering Institution ID in bulk processor is done [here](https://github.com/openMF/ph-ee-bulk-processor/blob/9bf984fcf16105081ff53936f72405814ef8ba71/src/main/resources/application.yaml#L160-L161C1).&#x20;
* You can override the same by adding the key-value pair in values.yaml as given below.

  ```
  connector_bulk:
    extraEnvs:
      - name: budget-account.registeringInstitutionId[0]
        value: "SocialWelfareMinistry"
      - name: "budget-account.registeringInstitutions[0].programs[0].id"
        value: "123"
      - name: "budget-account.registeringInstitutions[0].programs[0].identifierType"
        value: "ACCOUNT"
      - name: "budget-account.registeringInstitutions[0].programs[0].identifierValue"
        value: "123456789"
      - name: "budget-account.registeringInstitutions[0].programs[0].name"
        value: "Social Welfare"
  ```
