Skip to main content
PATCH
/
api
/
payments
/
v3
/
connectors
/
{connectorID}
/
config
Update the config of a connector
curl --request PATCH \
  --url http://localhost/api/payments/v3/connectors/{connectorID}/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "apiKey": "<string>",
  "companyID": "<string>",
  "name": "<string>",
  "liveEndpointPrefix": "<string>",
  "pageSize": "25",
  "pollingPeriod": "2m",
  "provider": "Adyen",
  "webhookPassword": "<string>",
  "webhookUsername": "<string>"
}
'
{
  "errorCode": "VALIDATION",
  "errorMessage": "[VALIDATION] missing reference"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

connectorID
string
required

The connector ID

Body

application/json
  • Option 1
  • Option 2
  • Option 3
  • Option 4
  • Option 5
  • Option 6
  • Option 7
  • Option 8
  • Option 9
  • Option 10
  • Option 11
  • Option 12
  • Option 13
apiKey
string
required
companyID
string
required
name
string
required
liveEndpointPrefix
string
pageSize
integer
default:25
pollingPeriod
string
default:2m
provider
string
default:Adyen
webhookPassword
string
webhookUsername
string

Response

No content