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

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
Required string length: 1 - 255
type
enum<string>
required
Available options:
COMPANY,
CONTACT
color
string
required
Required string length: 1 - 255

Response

200
application/json
Successful response

The response is of type any.