Skip to main content
POST
/
v1
/
crm
/
leads
/
{leadId}
/
validations
Validate Lead Completeness
curl --request POST \
  --url https://api.example.com/v1/crm/leads/{leadId}/validations \
  --header 'Authorization: Bearer <token>'
{
  "groups": [
    {
      "tabLabel": "<string>",
      "errors": [
        {
          "field": "<string>",
          "message": "<string>"
        }
      ],
      "warnings": [
        {
          "field": "<string>",
          "message": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter token in following format: Bearer

Path Parameters

leadId
string
required

Response

The grouped validation result.

groups
object[]
required