# Get Payout Method Retrieves a specific payout method by its unique identifier. This endpoint provides detailed information about a single payout method, including its name, category, requirements, and transaction limits. Endpoint: GET /v2/campaign-manager/payout-methods/{id} Version: v2 Security: oauth2 ## Path parameters: - `id` (string, required) ## Response 200 fields (application/json): - `id` (string) Unique identifier for the payout method. - `name` (string) Display name of the payout method. - `category` (integer) Enum: "PrepaidCards", "GiftCards", "ACHTransfer", "VenmoTransfer", "PayPalTransfer", "PayPalV2Transfer", "VenmoV2Transfer" - `iconUrl` (string) URL for the payout method's icon or logo. - `isValidPhoneNumberRequired` (boolean) Indicates whether a valid phone number is required for this payout method. - `isActive` (boolean) Informs whether a payout method is active. - `description` (string,null) Optional description providing additional information about the payout method. - `minAmount` (number,null) Optional minimum amount that can be processed with this payout method. - `maxAmount` (number,null) Optional maximum amount that can be processed with this payout method. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 404 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null)