Skip to main content
Create Onboarding PaymentLync Processor
curl --request POST \
  --url https://api.revolv3.com/api/onboarding/processors/paymentlync \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "processorFields": {
    "apiKey": "bXlfYXBpX2tleQo=",
    "transactionDescriptor": "Transaction Descriptor",
    "merchantPhone": null
  },
  "currencies": [
    "USD"
  ],
  "merchantId": 1
}'
{
  "objectType": "processorConfig",
  "merchantProcessorId": 1,
  "processorId": 10,
  "processorName": "PaymentLync",
  "merchantId": 1,
  "processorFields": {
    "apiKey": "bXlfYXBpX2tleQo=",
    "transactionDescriptor": null,
    "useDynamicDescriptor": false,
    "payFacPrefix": null,
    "merchantPhone": null
  },
  "currencies": [
    "USD"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

currencies
string[] | null
merchantId
integer
paymentLyncOnboardingConfiguration
object

Response

Created

objectType
string | null
merchantProcessorId
integer
processorId
integer
processorName
string | null
merchantId
integer
processorFields
object
currencies
string[] | null