Update a satispay gateway
How to update an existing satispay gateway via API
Request
Arguments
Body Parameter
Type
Required
Example
curl -g -X PATCH \
'https://yourdomain.commercelayer.io/api/satispay_gateways/XAyRWNUzyN' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer your-access-token' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "satispay_gateways",
"id": "xYZkjABcde",
"attributes": {
"_disable": true
},
"relationships": {
"satispay_payments": {
"data": {
"type": "satispay_payments",
"id": "ABCRtyUpBa"
}
}
}
}
}'Last updated