Get all payment method kinds
          
    Deprecated
 
        
        
        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. 
Query parameters
- 
    
  Flag to allow more data to the payment method kinds. 
- 
    
  Filter allowed payment methods kinds by poi. 
Responses
- 
      
      
        All payment method kinds 
- 
      
      
        OAuth token missing or invalid or a linked identity is missing. Linked identity missing is a special case where you need to make sure that the user has additionally logged in / authorized with a third-party. This is not relevant for most use-cases. The specific error code that identifies a missing linked identity is missing-linked-identityExample: { "errors": [ { "id": "cbgmhslmp1o9or9kh1p0", "title": "Missing linked identity for authorized access", "detail": "Linked identity is needed to access this resource, please check why the user does not have a linked identity", "status": "401", "code": "missing-linked-identity" } ] }
- 
      
      
        The specified accept header is invalid 
- 
      
      
        Internal server error 
curl \
 --request GET 'https://api.pace.cloud/pay/2022-1/payment-method-kinds' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Accept-Language: de"# 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,
        "vendorPRNs": [
          "prn:cms:payment-method-vendors:3af4b4a7-33fc-4930-9c2d-6eea7e488398",
          "prn:cms:payment-method-vendors:d546bbe8-e707-43ae-8345-0709e30e710f"
        ],
        "dataPrivacy": {
          "hint": {
            "markdown": "Please read the [payment terms][terms] _carefully_."
          },
          "terms": {
            "markdown": "# Terms & Conditions\n\nLorem ipsum ...\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"
          }
        ]
      }
    }
  ]
}{
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}{
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}{
  "errors": [
    {
      "id": "string",
      "links": {
        "about": "string"
      },
      "status": "string",
      "code": "string",
      "title": "string",
      "detail": "string",
      "source": {
        "pointer": "string",
        "parameter": "string"
      },
      "meta": {}
    }
  ]
}