Patch a payment method Deprecated
Allows to change fields that can be changed by the customer.
Path parameters
-
ID of the paymentMethod
Responses
-
200 application/vnd.api+json
The patched payment method.
-
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" } ] }
-
404 application/vnd.api+json
Resource not found
-
406 application/vnd.api+json
The specified accept header is invalid
-
500 application/vnd.api+json
Internal server error
PATCH /payment-methods/{paymentMethodId}
curl \
-X PATCH https://api.pace.cloud/pay/2020-4/payment-methods/d7101f72-a672-453c-9d36-d5809ef0ded6 \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/vnd.api+json"
Request examples
{
"data": {
"type": "paymentMethod",
"id": "d7101f72-a672-453c-9d36-d5809ef0ded6",
"attributes": {
"alias": "My wifes card"
}
}
}
Response examples (200)
{
"data": {
"type": "paymentMethod",
"id": "d7101f72-a672-453c-9d36-d5809ef0ded6",
"attributes": {
"kind": "string",
"identificationString": "DEUTSCHEBANK XX 3000",
"vendorPRN": "prn:cms:payment-method-vendors:3af4b4a7-33fc-4930-9c2d-6eea7e488398",
"twoFactor": true,
"approvalURL": "string",
"alias": "My wifes card",
"implicit": false
},
"meta": {
"merchantName": "PACE"
},
"relationships": {
"paymentTokens": {
"data": [
{
"type": "paymentToken",
"id": "33331f72-a672-453c-9d36-d5809ef0ded6"
}
]
}
},
"links": {
"authorize": {
"href": [
"/pay/payment-methods/6b071c65-ef8b-4794-8745-e53728b7617f/authorize",
"/pay/payment-method-kinds/applepay/authorize"
],
"meta": {
"authFlow": "token-provided"
}
}
}
}
}
Response examples (401)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}
Response examples (404)
{
"errors": [
{
"id": "string",
"links": {
"about": "string"
},
"status": "string",
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}
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": {}
}
]
}