# List all Withdrawal Accounts Returns a list of your Withdrawal accounts. The accounts are returned sorted by creation date, with the most recently created account appearing first. Endpoint: GET /withdrawal_accounts Version: 1.0.0 Security: JWT ## Query parameters: - `before` (string) ISO-8601 timestamp in UTC to filter resources created before this time. Use this to avoid Page drift issue. See Pagination parameters for more details. Example: "2025-02-18T12:03:44Z" - `after` (string) ISO-8601 timestamp in UTC to filter resources created after this time. Use this to avoid Page drift issue. See Pagination parameters for more details. Example: "2025-01-18T12:03:44Z" - `per_page` (integer) Number of resources per page. Should be between 1 and 100. - `page` (integer) Page number for pagination. Starts from 1. Get the next page number from the next field in the response. ## Response 200 fields (application/json): - `data` (array) - `data.id` (string) The unique identifier for the withdrawal account. Example: "accwith_5JU9yv0lGSUP" - `data.holder_name` (string) The name of the merchant that owns the withdrawal account. Example: "Test Arts & Crafts Pvt Ltd" - `data.account_number` (string) The account number. Example: "1234567890" - `data.bank_name` (string) The name of the bank where the account is held. Example: "Yes Bank" - `data.bic_primary` (string) The primary BIC of the bank account. This is the BIC of the bank where the account is held. This is also known as the SWIFT code. Example: "QWERIN000" - `data.bic_secondary` (string) The local routing code or domestic clearing code of the bank account. For reference, this is the IFSC code in India, SORT in UK, ABA in the US, etc. Example: "YESB0000002" - `data.currency` (string) The currency code in [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) format. For example, USD. Example: "USD" - `data.email` (string) The email address of the primary user associated with the merchant. Example: "john@mybusiness.com" - `data.address_line1` (string) The street address of the primary merchant user. Example: "123 Main St" - `data.address_line2` (string) The second line of street address of the primary merchant user. Example: "Near Apts" - `data.city` (string) The city where the primary merchant user is located. Example: "Anytown" - `data.state` (string) The state where the primary merchant user is located. Example: "Anystate" - `data.country` (string) The country where the primary merchant user is located. Country should be sent as a [ISO 3166-1 alpha-3](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) code. Example: "Ind" - `data.pincode` (string) The postal code of the primary merchant user's address. Example: "560048" - `data.created_at` (string) Timestamp representing when the withdrawal account was created Example: "2021-06-01T12:00:00Z" - `data.updated_at` (string) Timestamp representing when the withdrawal account was last updated Example: "2021-06-01T12:00:00Z" - `page_meta` (object) - `page_meta.current` (integer) The current page number. Example: 2 - `page_meta.previous` (integer,null) The previous page number. Example: 1 - `page_meta.next` (integer,null) The next page number. Example: 3 - `page_meta.per_page` (integer) The number of items per page. Example: 20 - `page_meta.pages` (integer) The total number of pages. Example: 10 - `page_meta.count` (integer) The total number of items. Example: 200 ## Response 400 fields (application/json): - `error` (string) Enum: "Bad Request" - `message` (string) Error message indicating which parameter was invalid