# Fund a batch group Funds all transfers in a batch group from a multi-currency account balance. Transfers are paid out immediately. The batch group must first be completed, and there must be enough funds in the account for the whole batch. Otherwise, an insufficient funds error will be returned. {% admonition type="warning" %} This endpoint is SCA protected when it applies. If your profile is registered within the UK and/or EEA, SCA most likely applies to you. For more information, please read implementing SCA. {% /admonition %} Endpoint: POST /v3/profiles/{profileId}/batch-payments/{batchGroupId}/payments Security: UserToken, PersonalToken ## Path parameters: - `profileId` (integer, required) The ID of the profile that the batch group is associated with. Example: 12345678 - `batchGroupId` (string, required) The batch group ID. Example: "54a6bc09-cef9-49a8-9041-f1f0c654cd88" ## Request fields (application/json): - `type` (string, required) The method of payment to use. Enum: "BALANCE" ## Response 200 fields (application/json): - `id` (string) Unique batch group ID. Example: "54a6bc09-cef9-49a8-9041-f1f0c654cd88" - `name` (string) Descriptive name. Example: "My batch group" - `fileName` (string,null) If this batch was submitted as a file, this is the given file name. - `alreadyPaid` (boolean) Not applicable to this use case. Example: true - `shortId` (integer) Not applicable to this use case. Example: 12345 - `userId` (integer) The ID of the user who initiated this payment. Example: 33333333 - `profileId` (integer) The ID of the profile this payment belongs to. Example: 44444444 - `sourceCurrency` (string) The source currency of the batch. Note that if there are insufficient funds, an automatic conversion from another currency can occur. Example: "GBP" - `status` (string) Current batch group status. Enum: "NEW", "COMPLETED", "MARKED_FOR_CANCELLATION", "PROCESSING_CANCEL", "CANCELLED" - `groupType` (string) Whether this batch was submitted over the API or as a file. Enum: "API", "FILE" - `transferIds` (array) The IDs of all transfers in the group. Example: [100001,100002,100003]