API Documentation
Lead Channel ¶
Overview
A LeadChannel represents an endpoint through which leads are captured and routed
| Field | Type | Association | Description |
|---|---|---|---|
| id | uuid | Internal identifier of the lead channel | |
| brand | uuid | Brand to which this lead channel belongs | |
| created_at | number | Timestamp of when this lead channel was created | |
| updated_at | number | Timestamp of when this lead channel was last updated | |
| deleted_at | number | Timestamp of when this lead channel was deleted (if applicable) | |
| capture_number | number | Number of leads captured by this channel so far | |
| last_capture_date | number | Timestamp of the most recent lead captured | |
| mls | string[] | List of code names of relevant MLS to search for listings mentioned by incoming leads | |
| is_default | boolean | Whether this lead channel is the default lead channel for the brand |
Get Lead Channel of brand ¶
Get Lead Channel of brandGET/brands/:brand/leads/channels
brand (uuid) ID of the brand
Example URI
GET /brands/:brand/leads/channels
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2
Response
200Body
{
"code": "OK",
"data": [
{
"id": "65c81841-188e-4521-a4bd-ec37c214f86e",
"name": "Default Route",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"capture_number": 0,
"mls": null,
"is_default": true,
"type": "lead_channel",
"created_at": 1789549157.967313,
"updated_at": 1789549157.967314,
"deleted_at": null,
"last_capture_date": null,
"rules_count": "1"
},
{
"id": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"name": null,
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"capture_number": 0,
"mls": null,
"is_default": false,
"type": "lead_channel",
"created_at": 1789549158.012099,
"updated_at": 1789549158.0121,
"deleted_at": null,
"last_capture_date": null,
"rules_count": "1"
}
],
"info": {
"count": 2,
"total": 2
}
}Create a Lead Channel ¶
Create a Lead ChannelPOST/brands/:brand/leads/channels
Example URI
POST /brands/:brand/leads/channels
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2
Request
Body
{
"protocol": "JSON"
}Response
200Body
{
"code": "OK",
"data": {
"id": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"name": null,
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"capture_number": 0,
"mls": null,
"is_default": false,
"type": "lead_channel",
"created_at": 1789549158.012099,
"updated_at": 1789549158.0121,
"deleted_at": null,
"last_capture_date": null,
"rules_count": "1"
}
}Delete a Lead Channel ¶
Delete a Lead ChannelDELETE/brands/:brand/leads/channels/:leadChannelId
Example URI
DELETE /brands/:brand/leads/channels/:leadChannelId
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b
Request
Body
{
"brand": "66703da6-c671-4f87-8459-c07afbbf935e"
}Response
204Update a Lead Channel ¶
Update a Lead ChannelPUT/brands/:brand/leads/channels/:leadChannelId
Example URI
PUT /brands/:brand/leads/channels/:leadChannelId
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b
Request
Body
{
"name": "New Name"
}Response
200Body
{
"code": "OK",
"data": {
"id": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"name": "New Name",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"capture_number": 0,
"mls": null,
"is_default": false,
"type": "lead_channel",
"created_at": 1789549158.012099,
"updated_at": 1789549157.454467,
"deleted_at": null,
"last_capture_date": null,
"rules_count": "1"
}
}Rule ¶
Overview
Rule
A LeadChannelRule determines how leads are routed based on specified conditions.
| Field | Type | Association | Description |
|---|---|---|---|
| id | uuid | Internal identifier of the lead routing rule | |
| created_at | number | Timestamp of when this rule was created | |
| updated_at | number | Timestamp of when this rule was last updated | |
| created_by | uuid | User who created this rule | |
| kind | ‘AND’ | ‘OR’ | Logical operator for combining conditions (AND or OR) | |
| is_default | boolean | Whether this rule is the default rule for the channel | |
| order | number | Order of this rule in the routing sequence | |
| conditions | uuid[] | lead_channel_rule.conditions | List of condition identifiers associated with this rule |
| flow | uuid | null | lead_channel_rule.flow | Identifier of the flow to enroll leads into (if applicable) |
| target | ‘Group’ | ‘User’ | ‘Brand’ | Type of target entity this rule applies to | |
| group | uuid | null | lead_channel_rule.group | Identifier of the group (if target is ‘Group’) |
| user | uuid | null | lead_channel_rule.user | Identifier of the user (if target is ‘User’) |
| brand | uuid | null | lead_channel_rule.brand | Identifier of the brand (if target is ‘Brand’ or ‘User’) |
RuleCondition
A LeadChannelRuleCondition specifies a single criterion used to evaluate and filter leads.
| Field | Type | Association | Description |
|---|---|---|---|
| id | uuid | Internal identifier of the condition | |
| created_at | number | Timestamp of when this condition was created | |
| order | number | Order of this condition in the rule’s conditions sequence | |
| field | string | Field name to be evaluated | |
| operator | ‘eq’ | ‘any’ | ‘all’ | ‘gte’ | ‘lte’ | Operator to be used for evaluation | |
| value | any | Value against which the field will be evaluated | |
| negated | boolean | Whether to negate the condition’s evaluation |
Create a lead channel rule ¶
Create a lead channel rulePOST/brands/:brand/leads/channels/:id/rules
Example URI
POST /brands/:brand/leads/channels/:id/rules
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b- associations
string(required) Example: lead_channel_rule.conditions,lead_channel_rule.brand,lead_channel_rule.user
Request
Body
{
"target": "User",
"kind": "AND",
"order": 1,
"flow": null,
"user": "90062af8-db4c-452b-ace5-a9e38efcee45",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"conditions": [
{
"field": "price",
"operator": "gte",
"value": 500000,
"order": 1
}
]
}Response
200Body
{
"code": "OK",
"data": {
"id": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"deleted_at": null,
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"channel": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"kind": "AND",
"order": 1,
"target": "User",
"user": {
"type": "user",
"username": null,
"first_name": "John",
"last_name": "Doe",
"email": "test-lead_channel-e7673566-8c85-4cd6-956c-3b983cad7ed9@rechat.com",
"phone_number": "+16488773450",
"created_at": 1789549157.47159,
"id": "90062af8-db4c-452b-ace5-a9e38efcee45",
"address_id": null,
"cover_image_url": null,
"profile_image_url": null,
"updated_at": 1789549157.471605,
"user_status": "Active",
"profile_image_thumbnail_url": null,
"cover_image_thumbnail_url": null,
"email_confirmed": false,
"timezone": "America/Chicago",
"user_type": "Agent",
"deleted_at": null,
"phone_confirmed": false,
"is_shadow": null,
"personal_room": "fa014e96-cfbc-4977-9910-3f2a7dca18f8",
"brand": null,
"fake_email": null,
"features": null,
"last_seen_at": null,
"email_signature": "This is my signature.",
"daily_enabled": false,
"email_quota": 30000,
"website": null,
"instagram": null,
"twitter": null,
"linkedin": null,
"youtube": null,
"facebook": null,
"designation": null,
"tiktok": null,
"mfa_enabled": false,
"xpressdocs_user_id": null,
"bio": "This is my bio.",
"current_time": "3:59 AM - Wednesday Sep 16, 2026",
"push_allowed": false,
"agents": null,
"last_seen_type": null,
"active_brand": "66703da6-c671-4f87-8459-c07afbbf935e",
"display_name": "John Doe",
"abbreviated_display_name": "John",
"online_state": "Offline",
"has_password": true
},
"brand": {
"id": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"created_at": 1789549157.614723,
"updated_at": 1789549157.614723,
"palette": null,
"assets": null,
"messages": null,
"parent": null,
"name": "LeadChannel",
"deleted_at": null,
"training": false,
"brand_type": "Team",
"parents": null,
"type": "brand",
"hostnames": null,
"member_count": 1,
"base_url": "https://irish.rechat.com"
},
"is_default": false,
"conditions": [
{
"id": "a3d4e3f7-62b9-4b4f-887b-46ead8cdd808",
"created_at": 1789549157.454467,
"rule": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"order": 1,
"field": "price",
"operator": "gte",
"value": 500000,
"negated": false,
"type": "lead_channel_rule_condition"
}
],
"type": "lead_channel_rule"
}
}Get rules for a lead channel ¶
Get rules for a lead channelGET/brands/:brand/leads/channels/:id/rules
Example URI
GET /brands/:brand/leads/channels/:id/rules
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b- associations
string(required) Example: lead_channel_rule.conditions,lead_channel_rule.brand,lead_channel_rule.user
Response
200Body
{
"code": "OK",
"data": [
{
"id": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"deleted_at": null,
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"channel": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"kind": "AND",
"order": 1,
"target": "User",
"user": {
"type": "user",
"username": null,
"first_name": "John",
"last_name": "Doe",
"email": "test-lead_channel-e7673566-8c85-4cd6-956c-3b983cad7ed9@rechat.com",
"phone_number": "+16488773450",
"created_at": 1789549157.47159,
"id": "90062af8-db4c-452b-ace5-a9e38efcee45",
"address_id": null,
"cover_image_url": null,
"profile_image_url": null,
"updated_at": 1789549157.471605,
"user_status": "Active",
"profile_image_thumbnail_url": null,
"cover_image_thumbnail_url": null,
"email_confirmed": false,
"timezone": "America/Chicago",
"user_type": "Agent",
"deleted_at": null,
"phone_confirmed": false,
"is_shadow": null,
"personal_room": "fa014e96-cfbc-4977-9910-3f2a7dca18f8",
"brand": null,
"fake_email": null,
"features": null,
"last_seen_at": null,
"email_signature": "This is my signature.",
"daily_enabled": false,
"email_quota": 30000,
"website": null,
"instagram": null,
"twitter": null,
"linkedin": null,
"youtube": null,
"facebook": null,
"designation": null,
"tiktok": null,
"mfa_enabled": false,
"xpressdocs_user_id": null,
"bio": "This is my bio.",
"current_time": "3:59 AM - Wednesday Sep 16, 2026",
"push_allowed": false,
"agents": null,
"last_seen_type": null,
"active_brand": "66703da6-c671-4f87-8459-c07afbbf935e",
"display_name": "John Doe",
"abbreviated_display_name": "John",
"online_state": "Offline",
"has_password": true
},
"brand": {
"id": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"created_at": 1789549157.614723,
"updated_at": 1789549157.614723,
"palette": null,
"assets": null,
"messages": null,
"parent": null,
"name": "LeadChannel",
"deleted_at": null,
"training": false,
"brand_type": "Team",
"parents": null,
"type": "brand",
"hostnames": null,
"member_count": 1,
"base_url": "https://irish.rechat.com"
},
"is_default": false,
"conditions": [
{
"id": "a3d4e3f7-62b9-4b4f-887b-46ead8cdd808",
"created_at": 1789549157.454467,
"rule": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"order": 1,
"field": "price",
"operator": "gte",
"value": 500000,
"negated": false,
"type": "lead_channel_rule_condition"
}
],
"type": "lead_channel_rule"
},
{
"id": "b83a134a-e78f-4912-acd6-27cf7f441f79",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"deleted_at": null,
"created_by": null,
"channel": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"kind": "AND",
"order": 32767,
"target": "Brand",
"user": null,
"brand": {
"id": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"created_at": 1789549157.614723,
"updated_at": 1789549157.614723,
"palette": null,
"assets": null,
"messages": null,
"parent": null,
"name": "LeadChannel",
"deleted_at": null,
"training": false,
"brand_type": "Team",
"parents": null,
"type": "brand",
"hostnames": null,
"member_count": 1,
"base_url": "https://irish.rechat.com"
},
"is_default": true,
"conditions": null,
"type": "lead_channel_rule"
}
],
"info": {
"count": 2,
"total": 0
}
}Reorder rules for a lead channel ¶
Reorder rules for a lead channelPUT/brands/:brand/leads/channels/:id/rules/sort
Example URI
PUT /brands/:brand/leads/channels/:id/rules/sort
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b
Request
Body
[
{
"id": "b83a134a-e78f-4912-acd6-27cf7f441f79",
"order": 1
},
{
"id": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"order": 2
}
]Response
200Update a lead channel rule ¶
Update a lead channel rulePUT/brands/:brand/leads/channels/:id/rules/:rule
Example URI
PUT /brands/:brand/leads/channels/:id/rules/:rule
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b- rule
string(required) Example: 80c883c1-9477-4a2f-b41a-5666f5b20e7c- associations
string(required) Example: lead_channel_rule.conditions,lead_channel_rule.brand,lead_channel_rule.user
Request
Body
{
"target": "Brand",
"kind": "OR",
"order": 2,
"flow": null,
"user": null,
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"conditions": [
{
"field": "postal_code",
"operator": "any",
"value": [
"90210",
"90211"
],
"order": 1
},
{
"field": "price",
"operator": "lte",
"value": 1000000,
"order": 2
}
]
}Response
200Body
{
"code": "OK",
"data": {
"id": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"deleted_at": null,
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"channel": "9198d0d7-38be-4f19-958d-627a4c5e686b",
"kind": "OR",
"order": 2,
"target": "Brand",
"user": null,
"brand": {
"id": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"created_at": 1789549157.614723,
"updated_at": 1789549157.614723,
"palette": null,
"assets": null,
"messages": null,
"parent": null,
"name": "LeadChannel",
"deleted_at": null,
"training": false,
"brand_type": "Team",
"parents": null,
"type": "brand",
"hostnames": null,
"member_count": 1,
"base_url": "https://irish.rechat.com"
},
"is_default": false,
"conditions": [
{
"id": "6742ce64-d88d-4c1b-98a1-32b3649c101a",
"created_at": 1789549157.454467,
"rule": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"order": 1,
"field": "postal_code",
"operator": "any",
"value": [
"90210",
"90211"
],
"negated": false,
"type": "lead_channel_rule_condition"
},
{
"id": "a95d4f90-2a2b-49cc-8a7e-485c472c6dff",
"created_at": 1789549157.454467,
"rule": "80c883c1-9477-4a2f-b41a-5666f5b20e7c",
"order": 2,
"field": "price",
"operator": "lte",
"value": 1000000,
"negated": false,
"type": "lead_channel_rule_condition"
}
],
"type": "lead_channel_rule"
}
}Delete a lead channel rule ¶
Delete a lead channel ruleDELETE/brands/:brand/leads/channels/:id/rules/:rule
Example URI
DELETE /brands/:brand/leads/channels/:id/rules/:rule
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- channel
string(required) Example: 9198d0d7-38be-4f19-958d-627a4c5e686b- rule
string(required) Example: 80c883c1-9477-4a2f-b41a-5666f5b20e7c
Response
204Get Lead Routing Groups of brand ¶
Get Lead Routing Groups of brandGET/brands/:brand/leads/groups
Example URI
GET /brands/:brand/leads/groups
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2
Response
200Body
{
"code": "OK",
"data": [
{
"id": "216fca3b-e947-48d5-ae3e-499f13d16c0e",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"name": "Test Group",
"description": null,
"distribution": "RoundRobin",
"type": "lead_routing_group"
}
],
"info": {
"count": 1,
"total": 0
}
}Create a Lead Routing Group ¶
Create a Lead Routing GroupPOST/brands/:brand/leads/groups
Example URI
POST /brands/:brand/leads/groups
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2
Request
Body
{
"name": "Test Group",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"distribution": "RoundRobin",
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"members": [
{
"user": "90062af8-db4c-452b-ace5-a9e38efcee45",
"order": 1,
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2"
}
]
}Response
200Body
{
"code": "OK",
"data": {
"id": "216fca3b-e947-48d5-ae3e-499f13d16c0e",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"name": "Test Group",
"description": null,
"distribution": "RoundRobin",
"type": "lead_routing_group"
}
}Update a Lead Routing Group ¶
Update a Lead Routing GroupPATCH/brands/:brand/leads/groups/:group
Example URI
PATCH /brands/:brand/leads/groups/:group
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- group
string(required) Example: 216fca3b-e947-48d5-ae3e-499f13d16c0e
Request
Body
{
"name": "Test Group Updated",
"distribution": "FirstToClaim",
"members": [
{
"user": "90062af8-db4c-452b-ace5-a9e38efcee45",
"order": 2,
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2"
}
]
}Response
200Body
{
"code": "OK",
"data": {
"id": "216fca3b-e947-48d5-ae3e-499f13d16c0e",
"created_at": 1789549157.454467,
"updated_at": 1789549157.454467,
"created_by": "90062af8-db4c-452b-ace5-a9e38efcee45",
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"name": "Test Group Updated",
"description": null,
"distribution": "FirstToClaim",
"type": "lead_routing_group"
}
}Delete a Lead Routing Group ¶
Delete a Lead Routing GroupDELETE/brands/:brand/leads/groups/:group
Example URI
DELETE /brands/:brand/leads/groups/:group
URI Parameters
- brand
string(required) Example: 48b76f9b-2c93-4961-9e7c-178779f0a9f2- group
string(required) Example: 216fca3b-e947-48d5-ae3e-499f13d16c0e
Response
204Lead Capture ¶
Overview
Capture a lead using a known lead channel ID ¶
Capture a lead using a known lead channel IDPOST/leads
Example URI
POST /leads
Request
Body
{
"metadata": {
"lead_channel": "c0f3ca0c-0c90-4f4b-95cb-cdc1e5bd163c"
},
"lead": {
"first_name": "Test",
"last_name": "User",
"email": "[email protected]",
"source_type": "Website"
}
}Response
200Body
{
"code": "OK",
"data": {
"id": "1fa24333-1895-45b4-a0bb-132e05841390",
"contact": "50c5cb06-ef0e-423e-992e-0471e1c5df68",
"lead_channel": "c0f3ca0c-0c90-4f4b-95cb-cdc1e5bd163c",
"raw_payload": {
"first_name": "Test",
"last_name": "User",
"email": "[email protected]",
"source_type": "Website"
},
"parsed_payload": {
"first_name": "Test",
"last_name": "User",
"email": "[email protected]",
"source_type": "Website"
},
"source_type": "Website",
"created_at": 1789549146.871
}
}Capture a lead using an email campaign email ID ¶
Capture a lead using an email campaign email IDPOST/leads
Example URI
POST /leads
Request
Body
{
"metadata": {
"email_campaign_email": "da443aaa-afb6-4613-b2ff-d37b6a96730b"
},
"lead": {
"first_name": "Test",
"last_name": "Recipient",
"email": "[email protected]",
"source_type": "Email Campaign"
}
}Response
200Body
{
"code": "OK",
"data": {
"id": "f216944c-885f-4d10-8414-ad4a037904d8",
"contact": "6180b50f-589e-44ce-b930-363b014271d6",
"lead_channel": "c0f3ca0c-0c90-4f4b-95cb-cdc1e5bd163c",
"raw_payload": {
"first_name": "Test",
"last_name": "Recipient",
"email": "[email protected]",
"source_type": "Email Campaign"
},
"parsed_payload": {
"first_name": "Test",
"last_name": "Recipient",
"email": "[email protected]",
"source_type": "Email Campaign"
},
"source_type": "Email Campaign",
"created_at": 1789549151.043
}
}Filter contacts by lead channel ¶
Filter contacts by lead channelPOST/contacts/filter
Example URI
POST /contacts/filter
Request
Body
{
"lead_channels": [
"5d843a25-305e-4a5b-89f3-3699e97f7711"
]
}Response
200Body
{
"code": "OK",
"data": [
{
"id": "b94f6db6-3e61-473a-abbe-4ccad472e234",
"display_name": "Hossein Derakhshan",
"partner_name": null,
"brand": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"brand_id": "48b76f9b-2c93-4961-9e7c-178779f0a9f2",
"user_id": "90062af8-db4c-452b-ace5-a9e38efcee45",
"sort_field": "Derakhshan Hossein",
"last_touch": 1789549157.454467,
"last_touch_action": null,
"next_touch": null,
"touch_freq": null,
"ios_address_book_id": null,
"android_address_book_id": null,
"created_at": 1789549158.431332,
"updated_at": 1789549157.454467,
"deleted_at": null,
"created_for": "lts_lead",
"updated_for": "lts_lead",
"deleted_for": null,
"title": null,
"first_name": "Hossein",
"partner_first_name": null,
"middle_name": null,
"last_name": "Derakhshan",
"partner_last_name": null,
"marketing_name": null,
"nickname": null,
"email": "[email protected]",
"primary_email": "[email protected]",
"emails": [
"[email protected]"
],
"parked": false,
"partner_email": null,
"phone_number": "560 688-7064",
"primary_phone_number": "560 688-7064",
"phone_numbers": [
"560 688-7064"
],
"company": null,
"birthday": null,
"profile_image_url": null,
"cover_image_url": null,
"job_title": null,
"source_type": "Showing",
"source": "Website",
"website": null,
"tags": [
"Showing",
"Lead"
],
"address": [
{
"city": "Atlanta",
"full": ", Atlanta GA",
"type": "stdaddr",
"line2": "Atlanta GA",
"state": "GA"
}
],
"type": "contact"
}
],
"info": {
"count": 1,
"total": 1
}
}