Skip to main content

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: 1001
namestring

Lead name

Example: New apartment buyer
balancedouble

Balance amount

Example: 5000
currencyIdint32

Currency ID

Example: 1
responsibleByIdint32

Responsible user ID

Example: 101
responsibleBystring

Responsible user full name

Example: Alice Johnson
pipeStatusIdint64

Lead pipeline status ID

Example: 1
tagsstring[]
Example: ["VIP","New"]
createdTimestampint64

Creation time (epoch seconds)

Example: 1672531200
updatedTimestampint64

Last update time (epoch seconds)

Example: 1672704000
uuiduuid

Lead UUID value

Example: 550e8400-e29b-41d4-a716-446655440000
LeadFilterResponseDTO
{
"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"
}