Get all payment method kinds
Returns all payment method kinds that are supported by this service. Use the Accept-Language header for localization.
Headers
-
Accept-Language string
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
-
additionalData boolean
Flag to allow more data to the payment method kinds.
-
poiID string(uuid)
Filter allowed payment methods kinds by poi.
Responses
-
200 application/vnd.api+json
All payment method kinds
-
401 application/vnd.api+json
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-identity
Example:
{ "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" } ] }
-
406 application/vnd.api+json
The specified accept header is invalid
-
500 application/vnd.api+json
Internal server error
curl \
-X GET https://api.pace.cloud/pay/2024-3/payment-method-kinds \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "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,
"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"
}
]
}
}
]
}
{
"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": {}
}
]
}