Skip to main content
Create Onboarding BridgePay Processor
curl --request POST \
  --url https://api.revolv3.com/api/onboarding/processors/bridgepay \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "processorFields": {
    "username": "Username",
    "password": "Password",
    "merchantCode": "12345001",
    "merchantAccountCode": "54321001"
  },
  "currencies": [
    "USD"
  ],
  "merchantId": 1
}'
{
  "objectType": "processorConfig",
  "merchantProcessorId": 1,
  "processorId": 1,
  "processorName": "BridgePay",
  "merchantId": 1,
  "processorFields": {
    "username": "Username",
    "password": "Password",
    "merchantCode": "12345001",
    "merchantAccountCode": "54321001"
  },
  "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
bridgePayOnboardingConfiguration
object

Response

Created

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