Skip to main content
Create Onboarding Merchant
curl --request POST \
  --url https://api.revolv3.com/api/onboarding/merchant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "company": "ACME, Inc",
  "dbaName": "ACME",
  "country": "US",
  "state": "CA",
  "city": "Santa Ana",
  "postalCode": "92602",
  "timezone": "America/Toronto",
  "address1": "100 Main Street",
  "address2": "Unit 101",
  "url": "www.site.com",
  "firstname": "John",
  "lastname": "Doe",
  "email": "someone@example.com",
  "phoneNumber": "5555555555",
  "defaultOrderProcessingChannelType": "0"
}'
{
  "merchantId": 1
}

Authorizations

Authorization
string
header
required

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

Body

company
string | null
dbaName
string | null
country
string | null
state
string | null
city
string | null
postalCode
string | null
timezone
string | null
address1
string | null
address2
string | null
url
string | null
firstname
string | null
lastname
string | null
email
string | null
phoneNumber
string | null
defaultOrderProcessingChannelType
enum<string>
Available options:
Ecommerce,
Moto

Response

Created

merchantId
integer