# Retrieves a payee by ID. Endpoint: GET /v1/payees/{id} Security: Bearer ## Path parameters: - `id` (integer, required) Unique identifier of the payee. ## Response 200 fields (text/plain): - `id` (integer) Example: 174 - `payeeType` (string,null) Example: "INDIVIDUAL|BUSINESS|BRAID" - `name` (string,null) - `email` (string,null) - `phoneNumber` (string,null) - `taxId` (string,null) - `businessName` (string,null) Example: "ABC Private ltd" - `businessType` (string,null) - `nationality` (string,null) Example: "USA" - `idType` (string,null) Example: "SSN" - `currency` (string,null) Example: "USD" - `address` (object) - `address.addressLine` (string,null) - `address.state` (string,null) - `address.city` (string,null) - `address.country` (string,null) - `address.postalCode` (string,null) - `dateOfBirth` (string,null) - `isActive` (boolean) ## Response 404 fields (text/plain): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 500 fields