Retrieves classification information for specified payment methods based on store configuration and customer type. This endpoint is designed for web components that need to understand payment method categories without full configuration details. Ideal for implementing custom payment method filtering or categorization logic.
Intended for: Payment widget components requiring payment method classification Authentication: None required (public endpoint) Use case: Building custom payment method selection interfaces
Request containing payment method IDs, store ID, and customer type
Customer segment for payment method filtering. Determines which payment methods are available based on business model. required: true enum: B2B,B2C example: "B2C"
B2B, B2C Array of payment method UUIDs to retrieve type information for. Each ID must be a valid UUID format representing a configured payment method. required: true example: ["550e8400-e29b-41d4-a716-446655440000", "6ba7b810-9dad-11d1-80b4-00c04fd430c8"]
Store UUID that owns the payment methods being queried. Must be a valid UUID format and correspond to an active merchant store. required: true example: "550e8400-e29b-41d4-a716-446655440000"
Payment method types successfully retrieved
Map of payment method UUIDs to their corresponding payment method types. The types indicate the payment method category (e.g., RESURS_INVOICE, SWISH, etc.) example: {"550e8400-e29b-41d4-a716-446655440000": "RESURS_INVOICE", "6ba7b810-9dad-11d1-80b4-00c04fd430c8": "SWISH"}