# List withdrawal accounts This endpoint is used to get a complete list of all approved fiat withdrawal accounts for an organization. The responses have pagination included to help navigate through multiple accounts if needed. Endpoint: GET /v1/brokerage/{orgId}/fiat_withdrawal_addresses Version: v1.0.0 Security: bearerAuth ## Path parameters: - `orgId` (string, required) ## Query parameters: - `page` (number) Example: 1 - `limit` (number) Example: 10 ## Response 200 fields (application/json): - `status` (string) Enum: "success", "error" - `data` (array,null) - `data.id` (string) Unique identifier for the fiat withdrawal account Example: "62389a49-7f17-49ab-ac2e-e1947961614e" - `data.currency` (string) Currency symbol associated with the account Example: "USD" - `data.accountName` (string) Name associated with the bank account Example: "testing USD" - `data.accountNumber` (string) Bank account number or its masked representation Example: "1234" - `data.bankName` (string) Name of the bank where the account is held Example: "USD TESTING" - `data.routingNumber` (string,null) Routing number for the bank, applicable for certain countries Example: "23423556" - `data.swiftCode` (string,null) SWIFT/BIC code for international transfers - `data.status` (string) Current status of the withdrawal account Example: "active" - `data.verified` (boolean) Indicates whether the account has been verified Example: true - `data.creatorId` (string,null) User ID of the account creator (nullable) Example: "84677558-407c-4ee9-b59a-51a0d5f55764" - `data.orgId` (string) Organization ID to which this account belongs Example: "c96183a5-2830-4606-9ae2-15dfd058872b" - `data.comments` (string,null) Optional notes or remarks related to the withdrawal account - `data.transferType` (string) Chosen transfer type of the account - `data.memo` (string,null) Optional memo field for the account, will be null if it is unset - `data.createdAt` (string) UTC Timestamp when the account was created Example: "2024-10-24T21:20:21.814Z" - `data.updatedAt` (string) UTC Timestamp when the account was last updated Example: "2024-10-25T03:14:56.998Z" - `message` (string) Example: "Data fetched successfully" - `meta` (object) - `meta.pagination` (object) - `meta.pagination.total` (number) Example: 10 - `meta.pagination.start` (number) Example: 1 - `meta.pagination.end` (number) Example: 2 - `meta.pagination.page` (number) Example: 1 - `meta.pagination.limit` (number) Example: 2 ## Response 400 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 401 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 500 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully"