Skip to main content
POST
/
v1
/
public
/
leads
Create lead
curl --request POST \
  --url https://{operatorDomain}/v1/public/leads \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "name": "<string>",
  "phone": "<string>",
  "message": "<string>",
  "productId": "<string>",
  "captchaToken": "<string>"
}
'
{
  "ok": true,
  "signalId": "<string>"
}

Body

application/json
email
string<email>
required
name
string
phone
string | null
message
string | null
productId
string | null
captchaToken
string | null

Response

201 - application/json

Created lead acknowledgement

ok
boolean
signalId
string | null