Get all payment method kinds for a specific client
Returns all payment method kinds that are supported by this service. Use the Accept-Language header for localization.
Headers
- 
    
  Language preference of localized response properties. The full standard of RFC 7231 (https://tools.ietf.org/html/rfc7231#section-5.3.5) is supported. 
        GET
    /payment-method-kinds/{clientId}
  
  curl \
 --request GET 'https://api.pace.cloud/pay/2025-1/payment-method-kinds/fueling-app' \
 --header "Accept-Language: de"
        Response examples (200)
  
  # Headers
Content-Language: en-GB
# Payload
{
  "data": [
    {
      "type": "paymentMethodKind",
      "id": "string",
      "attributes": {
        "name": "SEPA direct debit",
        "currencies": [
          "EUR",
          "PLN"
        ],
        "twoFactor": true,
        "fuelcard": false,
        "implicit": true,
        "managed": true,
        "vendorPRNs": [
          "prn:cms:payment-method-vendors:3af4b4a7-33fc-4930-9c2d-6eea7e488398",
          "prn:cms:payment-method-vendors:d546bbe8-e707-43ae-8345-0709e30e710f"
        ],
        "dataPrivacy": {
          "terms": {
            "markdown": "# Terms & Conditions\n\nLorem ipsum ...\n",
            "html": "<h1>Terms & Conditions</h1>\n\n<p>Lorem ipsum ...</p>\n"
          }
        },
        "vendors": [
          {
            "id": "3af4b4a7-33fc-4930-9c2d-6eea7e488398",
            "slug": "visa",
            "name": "VISA",
            "logo": {
              "href": "/cms/images/payment-method-vendors/visa.png",
              "variants": [
                {
                  "href": "string"
                }
              ]
            },
            "paymentMethodKindId": "creditcard"
          }
        ]
      }
    }
  ]
}
        Response examples (406)
  
  {
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}
        Response examples (500)
  
  {
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}