POST
/
contacts
curl --request POST \
  --url https://productlane.com/api/v1/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "[email protected]",
  "segments": [
    "<string>"
  ]
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required
name
string
Required string length: 1 - 255
segments
string[]

Response

200
application/json
Successful response

The response is of type any.