POST
/
companies
curl --request POST \
  --url https://productlane.com/api/v1/companies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "domain": "<string>",
  "segments": [
    "<string>"
  ],
  "autoAdd": false
}'
"<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
domain
string
required
Required string length: 1 - 63
segments
string[]
autoAdd
boolean
default:
false

Response

200
application/json
Successful response

The response is of type any.