Skip to main content

Update payment system profile

PATCH 

/clients/payment_systems_profiles/:id

JSON-RPC

clients.payment_systems_profiles.update

info

All parameters except id are optional, only provided parameters will be updated.

Request​

Path Parameters

    id integerrequired

    Payment system profile ID.

Bodyrequired

    clients_idintegerrequired

    Client ID.

    payment_systems_configurations_idintegerrequired

    Payment systems configuration ID.

    settings object

    Profile settings.

    oneOf
    card_refstringrequired

    Card reference.

Responses​

Number of the affected rows.

Schema
    integerinteger

Authorization: X-Api-Key

name: X-Api-Keytype: apiKeyin: headerdescription: Token for API access
curl -L -X PATCH 'https://docs.jerasoft.net/clients/payment_systems_profiles/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Api-Key: <X-Api-Key>'
Request Collapse all
Auth
Parameters
— pathrequired
Body required
{
  "clients_id": 0,
  "payment_systems_configurations_id": 0,
  "settings": {
    "card_ref": "string"
  }
}