# Index business reference account payouts Returns an array containing all wallet payouts to the business reference account specified in the request URL. Endpoint: GET /v1/businesses/{business_id}/accounts/{account_id}/reference_account_payouts Version: 1.0 ## Path parameters: - `business_id` (string, required) - `account_id` (string, required) ## Query parameters: - `page[number]` (string) The number of results pages to return. - `page[size]` (integer) The number of results to return in each page. - `filter[status]` (string) Filter the results by payout status. Enum: "ACCEPTED", "DECLINED", "EXECUTED" ## Response 200 fields (application/json): - `id` (string) Unique ID of the payout. Example: "4b157d71def54b5c9dac28ef1d04432c" - `reference` (string) A unique reference for the payout. Used as an idempotency key. Example: "9d2b59c2-c68f-413c-b2a9-a2f5bfd3f669" - `status` (string) Current status of the payout. Enum: "ACCEPTED", "DECLINED", "EXECUTED" - `end_to_end_id` (string) End-to-end ID of the payout. Example: "end_to_end_ref" - `description` (string) A description for the payout. Example: "Payout description" - `reference_account_id` (string) ID of the reference account to which the payout is directed. Example: "78f354e508314bb8ac982a3d7f969dde" - `decline_reason` (string) Contains a technical code for the payout if the is . Check for more information. Example: "instant_payment_rail_failure" - `decline_reason_details` (string) Contains a detailed reason why the payout was declined if the is . - `amount` (object) Amount of the payout. - `amount.value` (integer) The amount, in Euro cents. Example: 10000 - `amount.unit` (string) The unit of the given value. Example: "cents" - `amount.currency` (string) The currency. Example: "EUR" - `instant_payment_rail` (string) The payment rail used to make this an instant payout. If not present, the payout was done as a regular SEPA Credit Transfer. Enum: "sepa_instant" ## Response 400 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `code` (string) Example: "invalid_request" - `title` (string) Example: "Invalid Request" - `details` (string) Example: "Request is invalid" ## Response 403 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `code` (string) Example: "build_pagination_headers_failure" - `title` (string) Example: "failed to build pagination headers" - `details` (string) Example: "cannot connect to database" ## Response 404 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `code` (string) Example: "model_not_found" - `title` (string) Example: "Model Not Found" - `details` (string) Example: "Model was not found" ## Response 500 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `code` (string) Example: "generic_error" - `title` (string) Example: "Internal Server Error" - `details` (string) Example: "Internal server error. occurred"