LeadFilterResponseDTO
Lead summary object returned in the filter response (paginated). Does not include
attribution / channel / UTM data nor contacts/fields — the full lead detail is
available via GET /v1/open-api/lead/{leadId}.
idint64
Lead ID
Example:
1001namestring
Lead name
Example:
New apartment buyerbalancedouble
Balance amount
Example:
5000currencyIdint32
Currency ID
Example:
1responsibleByIdint32
Responsible user ID
Example:
101responsibleBystring
Responsible user full name
Example:
Alice JohnsonpipeStatusIdint64
Lead pipeline status ID
Example:
1tagsstring[]
Example:
["VIP","New"]createdTimestampint64
Creation time (epoch seconds)
Example:
1672531200updatedTimestampint64
Last update time (epoch seconds)
Example:
1672704000uuiduuid
Lead UUID value
Example:
550e8400-e29b-41d4-a716-446655440000LeadFilterResponseDTO
{
"id": 1001,
"name": "New apartment buyer",
"balance": 5000,
"currencyId": 1,
"responsibleById": 101,
"responsibleBy": "Alice Johnson",
"pipeStatusId": 1,
"tags": [
"VIP",
"New"
],
"createdTimestamp": 1672531200,
"updatedTimestamp": 1672704000,
"uuid": "550e8400-e29b-41d4-a716-446655440000"
}