Skip to main content
POST
/
v1
/
contacts
cURL
curl --request POST \
  --url https://revive-api-v2-production.herokuapp.com/v1/contacts/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstname": "<string>",
  "userType": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "affiliatePartners": "<string>",
  "hutk": "<string>",
  "options": {},
  "primaryPhoto": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
firstname
string
required
userType
string
required
email
string
phone
string
affiliatePartners
string
hutk
string
options
object
primaryPhoto
string

Response

200

Success