# Retrieve Withdrawal Account Returns the respective Withdrawal account. Endpoint: GET /withdrawal_accounts/{id} Version: 1.0.0 Security: JWT ## Path parameters: - `id` (string, required) The ID of the withdrawal account ## Response 200 fields (application/json): - `id` (string) The unique identifier for the withdrawal account. Example: "accwith_5JU9yv0lGSUP" - `holder_name` (string) The name of the merchant that owns the withdrawal account. Example: "Test Arts & Crafts Pvt Ltd" - `account_number` (string) The account number. Example: "1234567890" - `bank_name` (string) The name of the bank where the account is held. Example: "Yes Bank" - `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" - `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" - `currency` (string) The currency code in [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) format. For example, USD. Example: "USD" - `email` (string) The email address of the primary user associated with the merchant. Example: "john@mybusiness.com" - `address_line1` (string) The street address of the primary merchant user. Example: "123 Main St" - `address_line2` (string) The second line of street address of the primary merchant user. Example: "Near Apts" - `city` (string) The city where the primary merchant user is located. Example: "Anytown" - `state` (string) The state where the primary merchant user is located. Example: "Anystate" - `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" - `pincode` (string) The postal code of the primary merchant user's address. Example: "560048" - `created_at` (string) Timestamp representing when the withdrawal account was created Example: "2021-06-01T12:00:00Z" - `updated_at` (string) Timestamp representing when the withdrawal account was last updated Example: "2021-06-01T12:00:00Z" ## Response 404 fields (application/json): - `error` (string) Enum: "Not found" - `message` (string) Entity not found Enum: "Entity not found"