{"openapi": "3.1.0", "info": {"title": "Kanbox API", "version": "1.0", "description": "The Kanbox API enables you to add leads to be imported in lists and to update contacts.<br/>To authenticate your requests, you have to set a  <b>X-API-Key</b> header containing the API key."}, "paths": {"/public/leads": {"get": {"operationId": "api_api_public_get_leads", "summary": "Get Leads", "parameters": [{"in": "query", "name": "name", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "description": "Name of your list", "title": "Name"}, "required": false, "description": "Name of your list"}, {"in": "query", "name": "q", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "description": "Filter users by firstname or lastname", "title": "Q"}, "required": false, "description": "Filter users by firstname or lastname"}, {"in": "query", "name": "limit", "schema": {"default": 100, "minimum": 1, "title": "Limit", "type": "integer"}, "required": false}, {"in": "query", "name": "offset", "schema": {"default": 0, "minimum": 0, "title": "Offset", "type": "integer"}, "required": false}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/PagedLeadOutFull"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/lead": {"post": {"operationId": "api_api_public_add_lead", "summary": "Add Lead", "parameters": [{"in": "query", "name": "list", "schema": {"description": "Name of your list", "title": "List", "type": "string"}, "required": true, "description": "Name of your list"}], "responses": {"202": {"description": "Accepted"}, "401": {"description": "Unauthorized", "content": {"application/json": {"schema": {"title": "Response", "type": "string"}}}}, "404": {"description": "Not Found"}}, "description": "Add a lead to a list. The lead profile won't be scraped.", "tags": ["Public"], "requestBody": {"content": {"application/json": {"schema": {"$ref": "#/components/schemas/LeadIn", "description": "Lead profile"}}}, "required": true}, "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/leadurl": {"post": {"operationId": "api_api_public_add_lead_by_url", "summary": "Add Lead By Url", "parameters": [{"in": "query", "name": "list", "schema": {"description": "Name of your list", "title": "List", "type": "string"}, "required": true, "description": "Name of your list"}, {"in": "query", "name": "linkedin_profile_url", "schema": {"description": "Linkedin profile url", "title": "Linkedin Profile Url", "type": "string"}, "required": true, "description": "Linkedin profile url"}], "responses": {"202": {"description": "Accepted"}, "401": {"description": "Unauthorized", "content": {"application/json": {"schema": {"title": "Response", "type": "string"}}}}, "404": {"description": "Not Found"}}, "description": "Add a lead profile to be scraped in a list.", "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/members": {"get": {"operationId": "api_api_public_get_members", "summary": "Get Members", "parameters": [{"in": "query", "name": "type", "schema": {"anyOf": [{"$ref": "#/components/schemas/MembersType"}, {"type": "null"}], "default": "", "description": "Type of members list"}, "required": false, "description": "Type of members list"}, {"in": "query", "name": "pipeline_name", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "description": "Name of the pipeline", "title": "Pipeline Name"}, "required": false, "description": "Name of the pipeline"}, {"in": "query", "name": "step_title", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "description": "Title of the step of the pipeline (pipeline column)", "title": "Step Title"}, "required": false, "description": "Title of the step of the pipeline (pipeline column)"}, {"in": "query", "name": "q", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "description": "Filter users by firstname or lastname", "title": "Q"}, "required": false, "description": "Filter users by firstname or lastname"}, {"in": "query", "name": "linkedin_public_ids", "schema": {"anyOf": [{"items": {"type": "string"}, "type": "array"}, {"type": "null"}], "default": [], "description": "Filter by linkedin public id", "title": "Linkedin Public Ids"}, "required": false, "description": "Filter by linkedin public id"}, {"in": "query", "name": "updated_since", "schema": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "description": "Filter users updated after this date (ISO 8601 format, e.g., '2024-01-15T10:30:00Z' or '2024-01-15T10:30:00+00:00')", "title": "Updated Since"}, "required": false, "description": "Filter users updated after this date (ISO 8601 format, e.g., '2024-01-15T10:30:00Z' or '2024-01-15T10:30:00+00:00')"}, {"in": "query", "name": "limit", "schema": {"default": 100, "minimum": 1, "title": "Limit", "type": "integer"}, "required": false}, {"in": "query", "name": "offset", "schema": {"default": 0, "minimum": 0, "title": "Offset", "type": "integer"}, "required": false}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/PagedLinkedInUserOut"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/lists": {"get": {"operationId": "api_api_public_get_lists", "summary": "Get Lists", "parameters": [{"in": "query", "name": "limit", "schema": {"default": 100, "minimum": 1, "title": "Limit", "type": "integer"}, "required": false}, {"in": "query", "name": "offset", "schema": {"default": 0, "minimum": 0, "title": "Offset", "type": "integer"}, "required": false}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/PagedSearchOut"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}, "post": {"operationId": "api_api_public_create_list", "summary": "Create List", "parameters": [], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/SearchOut"}}}}}, "tags": ["Public"], "requestBody": {"content": {"application/json": {"schema": {"$ref": "#/components/schemas/SearchInSimple", "description": "Search"}}}, "required": true}, "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/lists/{list_id}": {"delete": {"operationId": "api_api_public_delete_list", "summary": "Delete List", "parameters": [{"in": "path", "name": "list_id", "schema": {"description": "id of a list", "title": "List Id", "type": "integer"}, "required": true, "description": "id of a list"}], "responses": {"202": {"description": "Accepted"}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/members/{id}": {"get": {"operationId": "api_api_public_get_member", "summary": "Get Member", "parameters": [{"in": "path", "name": "id", "schema": {"description": "Kanbox id of a member", "title": "Id", "type": "integer"}, "required": true, "description": "Kanbox id of a member"}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/LinkedInUserOut"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}, "patch": {"operationId": "api_api_public_update_member", "summary": "Update Member", "parameters": [{"in": "path", "name": "id", "schema": {"description": "Kanbox id of a member", "title": "Id", "type": "integer"}, "required": true, "description": "Kanbox id of a member"}], "responses": {"202": {"description": "Accepted"}}, "tags": ["Public"], "requestBody": {"content": {"application/json": {"schema": {"$ref": "#/components/schemas/MemberIn", "description": "Member"}}}, "required": true}, "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/campaigns": {"get": {"operationId": "api_api_public_get_campaigns", "summary": "Get Campaigns", "parameters": [], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"items": {"$ref": "#/components/schemas/CampaignOut"}, "title": "Response", "type": "array"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/campaigns/{campaign_id}/leads": {"get": {"operationId": "api_api_public_get_campaign_leads", "summary": "Get Campaign Leads", "parameters": [{"in": "path", "name": "campaign_id", "schema": {"title": "Campaign Id", "type": "integer"}, "required": true}, {"in": "query", "name": "limit", "schema": {"default": 100, "minimum": 1, "title": "Limit", "type": "integer"}, "required": false}, {"in": "query", "name": "offset", "schema": {"default": 0, "minimum": 0, "title": "Offset", "type": "integer"}, "required": false}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/PagedLeadOutFull"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/stats/campaigns/requested": {"get": {"operationId": "api_api_public_stats_requested", "summary": "Stats Requested", "parameters": [{"in": "query", "name": "group_by", "schema": {"allOf": [{"enum": ["year", "month", "week", "day"], "title": "GroupByStat", "type": "string"}], "default": "month"}, "required": false}, {"in": "query", "name": "campaign_id", "schema": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Campaign Id"}, "required": false}, {"in": "query", "name": "start_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "Start of the period in YYYY-MM-DD", "title": "Start Date"}, "required": false, "description": "Start of the period in YYYY-MM-DD"}, {"in": "query", "name": "end_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "End of the period in YYYY-MM-DD", "title": "End Date"}, "required": false, "description": "End of the period in YYYY-MM-DD"}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"items": {"$ref": "#/components/schemas/StatOut"}, "title": "Response", "type": "array"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/stats/campaigns/accepted": {"get": {"operationId": "api_api_public_stats_accepeted", "summary": "Stats Accepeted", "parameters": [{"in": "query", "name": "group_by", "schema": {"allOf": [{"enum": ["year", "month", "week", "day"], "title": "GroupByStat", "type": "string"}], "default": "month"}, "required": false}, {"in": "query", "name": "campaign_id", "schema": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Campaign Id"}, "required": false}, {"in": "query", "name": "start_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "Start of the period in YYYY-MM-DD", "title": "Start Date"}, "required": false, "description": "Start of the period in YYYY-MM-DD"}, {"in": "query", "name": "end_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "End of the period in YYYY-MM-DD", "title": "End Date"}, "required": false, "description": "End of the period in YYYY-MM-DD"}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"items": {"$ref": "#/components/schemas/StatOut"}, "title": "Response", "type": "array"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/stats/campaigns/messaged": {"get": {"operationId": "api_api_public_stats_messaged", "summary": "Stats Messaged", "parameters": [{"in": "query", "name": "group_by", "schema": {"allOf": [{"enum": ["year", "month", "week", "day"], "title": "GroupByStat", "type": "string"}], "default": "month"}, "required": false}, {"in": "query", "name": "campaign_id", "schema": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Campaign Id"}, "required": false}, {"in": "query", "name": "start_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "Start of the period in YYYY-MM-DD", "title": "Start Date"}, "required": false, "description": "Start of the period in YYYY-MM-DD"}, {"in": "query", "name": "end_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "End of the period in YYYY-MM-DD", "title": "End Date"}, "required": false, "description": "End of the period in YYYY-MM-DD"}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"items": {"$ref": "#/components/schemas/StatOut"}, "title": "Response", "type": "array"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/stats/campaigns/answered": {"get": {"operationId": "api_api_public_stats_answered", "summary": "Stats Answered", "parameters": [{"in": "query", "name": "group_by", "schema": {"allOf": [{"enum": ["year", "month", "week", "day"], "title": "GroupByStat", "type": "string"}], "default": "month"}, "required": false}, {"in": "query", "name": "campaign_id", "schema": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Campaign Id"}, "required": false}, {"in": "query", "name": "start_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "Start of the period in YYYY-MM-DD", "title": "Start Date"}, "required": false, "description": "Start of the period in YYYY-MM-DD"}, {"in": "query", "name": "end_date", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "End of the period in YYYY-MM-DD", "title": "End Date"}, "required": false, "description": "End of the period in YYYY-MM-DD"}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"items": {"$ref": "#/components/schemas/StatOut"}, "title": "Response", "type": "array"}}}}}, "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/{conversation_id}/messages": {"get": {"operationId": "api_api_public_get_conversation_messages_api", "summary": "Get Conversation Messages Api", "parameters": [{"in": "path", "name": "conversation_id", "schema": {"description": "Conversation ID", "title": "Conversation Id", "type": "integer"}, "required": true, "description": "Conversation ID"}, {"in": "query", "name": "cursor", "schema": {"anyOf": [{"type": "string"}, {"type": "null"}], "description": "Cursor for pagination", "title": "Cursor"}, "required": false, "description": "Cursor for pagination"}], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"$ref": "#/components/schemas/ConversationMessagesOut"}}}}}, "description": "Retrieve messages from a specific LinkedIn conversation.\n\nThis endpoint allows you to fetch messages from a conversation with pagination support.\nMessages are returned in chronological order (newest last).", "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/messages": {"post": {"operationId": "api_api_public_send_message_public", "summary": "Send Message Public", "parameters": [], "responses": {"202": {"description": "Accepted"}, "400": {"description": "Bad Request"}, "200": {"description": "OK", "content": {"application/json": {"schema": {"title": "Response", "type": "integer"}}}}}, "description": "Sends a message to a Linkedin contact. It can work only if the user is a connection.", "tags": ["Public"], "requestBody": {"content": {"application/json": {"schema": {"$ref": "#/components/schemas/MessageInSimple", "description": "Message"}}}, "required": true}, "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/team/accounts": {"get": {"operationId": "api_api_public_get_team_accounts", "summary": "Get Team Accounts", "parameters": [], "responses": {"200": {"description": "OK", "content": {"application/json": {"schema": {"items": {}, "title": "Response", "type": "array"}}}}, "403": {"description": "Forbidden", "content": {"application/json": {"schema": {"title": "Response", "type": "string"}}}}}, "description": "Returns all accounts and their API keys for a multi-account team.\nOnly accessible by the team owner.", "tags": ["Public"], "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}, "/public/connections": {"post": {"operationId": "api_api_public_send_connection_request", "summary": "Send Connection Request", "parameters": [], "responses": {"202": {"description": "Accepted"}, "400": {"description": "Bad Request"}, "200": {"description": "OK", "content": {"application/json": {"schema": {"title": "Response", "type": "integer"}}}}}, "description": "Sends a connection request to a Linkedin contact. It can work only if the user is not a connection.", "tags": ["Public"], "requestBody": {"content": {"application/json": {"schema": {"$ref": "#/components/schemas/ConnectionRequest", "description": "Message"}}}, "required": true}, "security": [{"ApiKey": []}, {"ApiKeyQueryAuth": []}]}}}, "components": {"schemas": {"Input": {"properties": {"limit": {"default": 100, "minimum": 1, "title": "Limit", "type": "integer"}, "offset": {"default": 0, "minimum": 0, "title": "Offset", "type": "integer"}}, "title": "Input", "type": "object"}, "LabelOut": {"description": "Label schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "name": {"maxLength": 100, "title": "Name", "type": "string"}, "color": {"default": "#FFFFFF", "maxLength": 10, "title": "Color", "type": "string"}}, "required": ["name"], "title": "LabelOut", "type": "object"}, "LeadOutFull": {"properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "linkedin_id": {"maxLength": 1000, "title": "Linkedin Id", "type": "string"}, "linkedin_public_id": {"maxLength": 1000, "title": "Linkedin Public Id", "type": "string"}, "linkedin_plain_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Linkedin Plain Id"}, "is_salesnav_id": {"default": false, "title": "Is Salesnav Id", "type": "boolean"}, "firstname": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Firstname"}, "lastname": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Lastname"}, "is_public_profile": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Public Profile"}, "firstname_cleaned": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Firstname Cleaned"}, "lastname_cleaned": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Lastname Cleaned"}, "headline": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Headline"}, "summary": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Summary"}, "salesnavigator_url": {"anyOf": [{"maxLength": 1080, "type": "string"}, {"type": "null"}], "title": "Salesnavigator Url"}, "talent_url": {"anyOf": [{"maxLength": 1080, "type": "string"}, {"type": "null"}], "title": "Talent Url"}, "company": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company"}, "company_cleaned": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Cleaned"}, "company_id": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Id"}, "company_linkedin": {"anyOf": [{"maxLength": 1180, "type": "string"}, {"type": "null"}], "title": "Company Linkedin"}, "company_website": {"anyOf": [{"maxLength": 1170, "type": "string"}, {"type": "null"}], "title": "Company Website"}, "company_logo": {"anyOf": [{"maxLength": 1160, "type": "string"}, {"type": "null"}], "title": "Company Logo"}, "company_industry": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Industry"}, "company_type": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Type"}, "company_year_founded": {"anyOf": [{"maxLength": 50, "type": "string"}, {"type": "null"}], "title": "Company Year Founded"}, "company_location": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Location"}, "company_description": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Company Description"}, "company_employee_count": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Company Employee Count"}, "company_employee_range": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Employee Range"}, "company_specialties": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Company Specialties"}, "skills": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Skills"}, "location": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Location"}, "education": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Education"}, "education_school": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Education School"}, "education_start_year": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education Start Year"}, "education_start_month": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education Start Month"}, "education_end_year": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education End Year"}, "education_end_month": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education End Month"}, "education_link": {"anyOf": [{"maxLength": 1150, "type": "string"}, {"type": "null"}], "title": "Education Link"}, "country": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Country"}, "job": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Job"}, "job_description": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Job Description"}, "year_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Year Position"}, "month_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Month Position"}, "startyear_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Startyear Position"}, "startmonth_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Startmonth Position"}, "year_company": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Year Company"}, "month_company": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Month Company"}, "industry": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Industry"}, "languages": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Languages"}, "follower": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Follower"}, "connections": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Connections"}, "is_online": {"default": false, "title": "Is Online", "type": "boolean"}, "is_sponsor": {"default": false, "title": "Is Sponsor", "type": "boolean"}, "is_opentowork": {"default": false, "title": "Is Opentowork", "type": "boolean"}, "picture": {"anyOf": [{"maxLength": 440, "type": "string"}, {"type": "null"}], "title": "Picture"}, "email": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Email"}, "email_is_enrichvalid": {"default": false, "title": "Email Is Enrichvalid", "type": "boolean"}, "email_enrich": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Email Enrich"}, "twitter": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Twitter"}, "phone": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Phone"}, "is_premium": {"default": false, "title": "Is Premium", "type": "boolean"}, "is_open_profile": {"default": false, "title": "Is Open Profile", "type": "boolean"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}, "dropcontact_request": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Dropcontact Request"}, "fullenrich_request": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Fullenrich Request"}, "fullenrich_request_created": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Fullenrich Request Created"}, "dropcontact_request_user": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Dropcontact Request User"}, "dropcontact_request_created": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Dropcontact Request Created"}, "dropcontact_request_index": {"default": 0, "title": "Dropcontact Request Index", "type": "integer"}, "dropcontact_request_completed": {"default": false, "title": "Dropcontact Request Completed", "type": "boolean"}, "dropcontact_request_is_icypeas": {"default": false, "title": "Dropcontact Request Is Icypeas", "type": "boolean"}, "is_used_team": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Used Team"}, "is_used_anothersearch": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Used Anothersearch"}, "is_match": {"title": "Is Match", "type": "boolean"}, "is_search_enrich": {"title": "Is Search Enrich", "type": "boolean"}, "is_enrich_phone": {"title": "Is Enrich Phone", "type": "boolean"}, "lnuser": {"anyOf": [{"$ref": "#/components/schemas/LinkedInUserSimplifiedOut"}, {"type": "null"}]}, "no_match_reasons": {"anyOf": [{"items": {"type": "string"}, "type": "array"}, {"type": "null"}], "title": "No Match Reasons"}, "uploaded_email": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Uploaded Email"}, "uploaded_phone": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Uploaded Phone"}, "uploaded_icebreaker": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Uploaded Icebreaker"}, "degree": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Degree"}, "spotlight": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Spotlight"}, "leadmagnet_message_sent": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Leadmagnet Message Sent"}, "leadmagnet_message_sent_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Leadmagnet Message Sent At"}, "leadmagnet_connection_asked": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Leadmagnet Connection Asked"}, "leadmagnet_connection_asked_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Leadmagnet Connection Asked At"}}, "required": ["linkedin_id", "linkedin_public_id", "created_at", "updated_at", "is_match", "is_search_enrich", "is_enrich_phone"], "title": "LeadOutFull", "type": "object"}, "LinkedInUserSimplifiedOut": {"description": "LinkedInUserOut schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "user": {"title": "User", "type": "integer"}, "lead": {"title": "Lead", "type": "integer"}, "linkedin_id": {"maxLength": 1000, "title": "Linkedin Id", "type": "string"}, "connection_sync_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Connection Sync At"}, "is_sponsor": {"default": false, "title": "Is Sponsor", "type": "boolean"}, "is_private": {"default": false, "title": "Is Private", "type": "boolean"}, "invitation_sync_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Invitation Sync At"}, "invited_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Invited At"}, "board": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Board"}, "step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Step"}, "moved_at": {"format": "date-time", "title": "Moved At", "type": "string"}, "invitation_id": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Invitation Id"}, "invitation_secret": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Invitation Secret"}, "invitation_type": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Invitation Type"}, "invitation_message": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Invitation Message"}, "is_archived": {"default": false, "title": "Is Archived", "type": "boolean"}, "connected_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Connected At"}, "connection_created_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Connection Created At"}, "is_followed": {"default": false, "title": "Is Followed", "type": "boolean"}, "is_connection": {"default": false, "title": "Is Connection", "type": "boolean"}, "degree": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Degree"}, "spotlight": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Spotlight"}, "was_connection": {"default": false, "title": "Was Connection", "type": "boolean"}, "icebreaker": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Icebreaker"}, "email": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Email"}, "phone": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Phone"}, "phone_enriching": {"default": false, "title": "Phone Enriching", "type": "boolean"}, "is_enrich_phone": {"default": false, "title": "Is Enrich Phone", "type": "boolean"}, "custom": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Custom"}, "is_enrich": {"default": false, "title": "Is Enrich", "type": "boolean"}, "is_lead": {"default": false, "title": "Is Lead", "type": "boolean"}, "is_processed": {"default": false, "title": "Is Processed", "type": "boolean"}, "is_groupchat": {"default": false, "title": "Is Groupchat", "type": "boolean"}, "templates": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Templates"}, "webhook_sent_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Webhook Sent At"}, "webhook_name": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Webhook Name"}, "remind_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Remind At"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}, "labels": {"items": {"$ref": "#/components/schemas/LabelOut"}, "title": "Labels", "type": "array"}}, "required": ["user", "lead", "linkedin_id", "moved_at", "created_at", "updated_at", "labels"], "title": "LinkedInUserSimplifiedOut", "type": "object"}, "PagedLeadOutFull": {"properties": {"items": {"items": {"$ref": "#/components/schemas/LeadOutFull"}, "title": "Items", "type": "array"}, "count": {"title": "Count", "type": "integer"}}, "required": ["items", "count"], "title": "PagedLeadOutFull", "type": "object"}, "LeadIn": {"properties": {"linkedin_public_id": {"title": "Linkedin Public Id", "type": "string"}, "firstname": {"maxLength": 300, "title": "Firstname", "type": "string"}, "lastname": {"maxLength": 300, "title": "Lastname", "type": "string"}, "email": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Email"}, "phone": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Phone"}, "company": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company"}, "language": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Language"}, "location": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Location"}, "job": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Job"}, "icebreaker": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Icebreaker"}, "labels": {"anyOf": [{"items": {"type": "string"}, "type": "array"}, {"type": "null"}], "title": "Labels"}, "step": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Step"}, "pipeline": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Pipeline"}}, "required": ["linkedin_public_id", "firstname", "lastname"], "title": "LeadIn", "type": "object"}, "MembersType": {"enum": ["inbox", "unread_inbox", "connections"], "title": "MembersType", "type": "string"}, "LastMessage": {"properties": {"linkedin_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Linkedin Id"}, "id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Id"}, "last_message_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Id"}, "last_message_text": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Text"}, "last_message_html": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Html"}, "last_message_action_link": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Action Link"}, "last_message_action_text": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Action Text"}, "last_message_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Last Message At"}, "last_message_attachment": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Attachment"}, "last_message_attachment_name": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Attachment Name"}, "last_message_attachment_type": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message Attachment Type"}, "last_message_from_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Last Message From Id"}}, "title": "LastMessage", "type": "object"}, "LeadOut": {"description": "LeadOut schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "linkedin_id": {"maxLength": 1000, "title": "Linkedin Id", "type": "string"}, "linkedin_public_id": {"maxLength": 1000, "title": "Linkedin Public Id", "type": "string"}, "linkedin_plain_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Linkedin Plain Id"}, "is_salesnav_id": {"default": false, "title": "Is Salesnav Id", "type": "boolean"}, "firstname": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Firstname"}, "lastname": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Lastname"}, "is_public_profile": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Public Profile"}, "firstname_cleaned": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Firstname Cleaned"}, "lastname_cleaned": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Lastname Cleaned"}, "headline": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Headline"}, "summary": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Summary"}, "salesnavigator_url": {"anyOf": [{"maxLength": 1080, "type": "string"}, {"type": "null"}], "title": "Salesnavigator Url"}, "talent_url": {"anyOf": [{"maxLength": 1080, "type": "string"}, {"type": "null"}], "title": "Talent Url"}, "company": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company"}, "company_cleaned": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Cleaned"}, "company_id": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Id"}, "company_linkedin": {"anyOf": [{"maxLength": 1180, "type": "string"}, {"type": "null"}], "title": "Company Linkedin"}, "company_website": {"anyOf": [{"maxLength": 1170, "type": "string"}, {"type": "null"}], "title": "Company Website"}, "company_logo": {"anyOf": [{"maxLength": 1160, "type": "string"}, {"type": "null"}], "title": "Company Logo"}, "company_industry": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Industry"}, "company_type": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Type"}, "company_year_founded": {"anyOf": [{"maxLength": 50, "type": "string"}, {"type": "null"}], "title": "Company Year Founded"}, "company_location": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Location"}, "company_description": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Company Description"}, "company_employee_count": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Company Employee Count"}, "company_employee_range": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Company Employee Range"}, "company_specialties": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Company Specialties"}, "skills": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Skills"}, "location": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Location"}, "education": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Education"}, "education_school": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Education School"}, "education_start_year": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education Start Year"}, "education_start_month": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education Start Month"}, "education_end_year": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education End Year"}, "education_end_month": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Education End Month"}, "education_link": {"anyOf": [{"maxLength": 1150, "type": "string"}, {"type": "null"}], "title": "Education Link"}, "country": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Country"}, "job": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Job"}, "job_description": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Job Description"}, "year_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Year Position"}, "month_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Month Position"}, "startyear_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Startyear Position"}, "startmonth_position": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Startmonth Position"}, "year_company": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Year Company"}, "month_company": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Month Company"}, "industry": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Industry"}, "languages": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Languages"}, "follower": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Follower"}, "connections": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Connections"}, "is_online": {"default": false, "title": "Is Online", "type": "boolean"}, "is_sponsor": {"default": false, "title": "Is Sponsor", "type": "boolean"}, "is_opentowork": {"default": false, "title": "Is Opentowork", "type": "boolean"}, "picture": {"anyOf": [{"maxLength": 440, "type": "string"}, {"type": "null"}], "title": "Picture"}, "email": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Email"}, "email_is_enrichvalid": {"default": false, "title": "Email Is Enrichvalid", "type": "boolean"}, "email_enrich": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Email Enrich"}, "twitter": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Twitter"}, "phone": {"anyOf": [{"maxLength": 300, "type": "string"}, {"type": "null"}], "title": "Phone"}, "is_premium": {"default": false, "title": "Is Premium", "type": "boolean"}, "is_open_profile": {"default": false, "title": "Is Open Profile", "type": "boolean"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}, "dropcontact_request": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Dropcontact Request"}, "fullenrich_request": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Fullenrich Request"}, "fullenrich_request_created": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Fullenrich Request Created"}, "dropcontact_request_user": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Dropcontact Request User"}, "dropcontact_request_created": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Dropcontact Request Created"}, "dropcontact_request_index": {"default": 0, "title": "Dropcontact Request Index", "type": "integer"}, "dropcontact_request_completed": {"default": false, "title": "Dropcontact Request Completed", "type": "boolean"}, "dropcontact_request_is_icypeas": {"default": false, "title": "Dropcontact Request Is Icypeas", "type": "boolean"}, "is_used_team": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Used Team"}, "is_used_anothersearch": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Used Anothersearch"}}, "required": ["linkedin_id", "linkedin_public_id", "created_at", "updated_at"], "title": "LeadOut", "type": "object"}, "LinkedInUserOut": {"description": "LinkedInUserOut schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "user": {"title": "User", "type": "integer"}, "lead": {"$ref": "#/components/schemas/LeadOut"}, "linkedin_id": {"maxLength": 1000, "title": "Linkedin Id", "type": "string"}, "connection_sync_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Connection Sync At"}, "is_sponsor": {"default": false, "title": "Is Sponsor", "type": "boolean"}, "is_private": {"default": false, "title": "Is Private", "type": "boolean"}, "invitation_sync_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Invitation Sync At"}, "invited_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Invited At"}, "board": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Board"}, "step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Step"}, "moved_at": {"format": "date-time", "title": "Moved At", "type": "string"}, "invitation_id": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Invitation Id"}, "invitation_secret": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Invitation Secret"}, "invitation_type": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Invitation Type"}, "invitation_message": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Invitation Message"}, "is_archived": {"default": false, "title": "Is Archived", "type": "boolean"}, "connected_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Connected At"}, "connection_created_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Connection Created At"}, "is_followed": {"default": false, "title": "Is Followed", "type": "boolean"}, "is_connection": {"default": false, "title": "Is Connection", "type": "boolean"}, "degree": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Degree"}, "spotlight": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "title": "Spotlight"}, "was_connection": {"default": false, "title": "Was Connection", "type": "boolean"}, "icebreaker": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Icebreaker"}, "email": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Email"}, "phone": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Phone"}, "phone_enriching": {"default": false, "title": "Phone Enriching", "type": "boolean"}, "is_enrich_phone": {"default": false, "title": "Is Enrich Phone", "type": "boolean"}, "custom": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Custom"}, "is_enrich": {"default": false, "title": "Is Enrich", "type": "boolean"}, "is_lead": {"default": false, "title": "Is Lead", "type": "boolean"}, "is_processed": {"default": false, "title": "Is Processed", "type": "boolean"}, "is_groupchat": {"default": false, "title": "Is Groupchat", "type": "boolean"}, "templates": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Templates"}, "webhook_sent_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Webhook Sent At"}, "webhook_name": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Webhook Name"}, "remind_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Remind At"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}, "notes_count": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Notes Count"}, "step_name": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Step Name"}, "last_message": {"anyOf": [{"$ref": "#/components/schemas/LastMessage"}, {"type": "null"}]}, "lastactivity_at": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Lastactivity At"}, "conversations_ids": {"anyOf": [{"items": {"additionalProperties": true, "type": "object"}, "type": "array"}, {"type": "null"}], "title": "Conversations Ids"}, "labels": {"items": {"$ref": "#/components/schemas/LabelOut"}, "title": "Labels", "type": "array"}, "is_read": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Read"}, "is_starred": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Is Starred"}, "score": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Score"}, "score_comment": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Score Comment"}, "campaign_ai_intent": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Campaign Ai Intent"}, "campaign_ai_draft": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Campaign Ai Draft"}, "campaign_ai_reply": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Campaign Ai Reply"}, "campaign_ai_reply_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Campaign Ai Reply At"}, "campaign_ai_conv": {"anyOf": [{"type": "boolean"}, {"type": "null"}], "title": "Campaign Ai Conv"}, "campaign_ai_conv_messcount": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Campaign Ai Conv Messcount"}}, "required": ["user", "lead", "linkedin_id", "moved_at", "created_at", "updated_at", "labels"], "title": "LinkedInUserOut", "type": "object"}, "PagedLinkedInUserOut": {"properties": {"items": {"items": {"$ref": "#/components/schemas/LinkedInUserOut"}, "title": "Items", "type": "array"}, "count": {"title": "Count", "type": "integer"}}, "required": ["items", "count"], "title": "PagedLinkedInUserOut", "type": "object"}, "PagedSearchOut": {"properties": {"items": {"items": {"$ref": "#/components/schemas/SearchOut"}, "title": "Items", "type": "array"}, "count": {"title": "Count", "type": "integer"}}, "required": ["items", "count"], "title": "PagedSearchOut", "type": "object"}, "SearchOut": {"description": "Search schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "user": {"$ref": "#/components/schemas/UserOutSearch"}, "team": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Team"}, "name": {"maxLength": 500, "title": "Name", "type": "string"}, "list_id": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "List Id"}, "filters": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Filters"}, "error": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Error"}, "profiles": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Profiles"}, "linkedin_ids": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Linkedin Ids"}, "salesnav_ids": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Salesnav Ids"}, "processing_linkedin_ids": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Processing Linkedin Ids"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "search_url": {"maxLength": 20000, "title": "Search Url", "type": "string"}, "search_api_url": {"anyOf": [{"maxLength": 20000, "type": "string"}, {"type": "null"}], "title": "Search Api Url"}, "is_salesnav": {"default": true, "title": "Is Salesnav", "type": "boolean"}, "is_talent": {"default": false, "title": "Is Talent", "type": "boolean"}, "is_free_search": {"default": false, "title": "Is Free Search", "type": "boolean"}, "is_enrich": {"default": false, "title": "Is Enrich", "type": "boolean"}, "is_enrich_phone": {"default": false, "title": "Is Enrich Phone", "type": "boolean"}, "is_enrich_processing": {"default": false, "title": "Is Enrich Processing", "type": "boolean"}, "is_enrich_error": {"default": false, "title": "Is Enrich Error", "type": "boolean"}, "scrape_likes": {"default": false, "title": "Scrape Likes", "type": "boolean"}, "scrape_comments": {"default": false, "title": "Scrape Comments", "type": "boolean"}, "dynamic_type": {"anyOf": [{"maxLength": 20, "type": "string"}, {"type": "null"}], "title": "Dynamic Type"}, "dynamic_import_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Dynamic Import At"}, "exclude_connections": {"default": false, "title": "Exclude Connections", "type": "boolean"}, "exclude_leads": {"default": false, "title": "Exclude Leads", "type": "boolean"}, "leadmagnet_keywords": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Leadmagnet Keywords"}, "leadmagnet_autoreply_notconnected": {"default": true, "title": "Leadmagnet Autoreply Notconnected", "type": "boolean"}, "leadmagnet_comment_notconnected": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Leadmagnet Comment Notconnected"}, "leadmagnet_comment_sent": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Leadmagnet Comment Sent"}, "leadmagnet_private_message": {"anyOf": [{"maxLength": 5000, "type": "string"}, {"type": "null"}], "title": "Leadmagnet Private Message"}, "icypeas_file": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Icypeas File"}, "icypeas_files": {"anyOf": [{"items": {}, "type": "array"}, {"type": "null"}], "title": "Icypeas Files"}, "mail_count": {"default": 0, "title": "Mail Count", "type": "integer"}, "phone_count": {"default": 0, "title": "Phone Count", "type": "integer"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}, "scraped_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Scraped At"}, "linkedin_count": {"default": 0, "title": "Linkedin Count", "type": "integer"}, "total_count": {"default": 0, "title": "Total Count", "type": "integer"}, "match_count": {"default": 0, "title": "Match Count", "type": "integer"}, "offset": {"default": 0, "title": "Offset", "type": "integer"}, "is_dynamic": {"default": false, "title": "Is Dynamic", "type": "boolean"}, "is_processing": {"default": true, "title": "Is Processing", "type": "boolean"}, "is_paused": {"default": false, "title": "Is Paused", "type": "boolean"}, "is_paused_cloud": {"default": true, "title": "Is Paused Cloud", "type": "boolean"}, "is_archived": {"default": false, "title": "Is Archived", "type": "boolean"}, "users_count": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Users Count"}, "duplicates": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Duplicates"}}, "required": ["user", "name", "created_at", "search_url", "updated_at"], "title": "SearchOut", "type": "object"}, "UserOutSearch": {"description": "User schema", "properties": {"id": {"title": "Id", "type": "integer"}, "firstname": {"title": "Firstname", "type": "string"}, "lastname": {"title": "Lastname", "type": "string"}, "picture": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "title": "Picture"}, "meta_client_page_instance_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "", "title": "Meta Client Page Instance Id"}, "linkedin_plain_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Linkedin Plain Id"}, "linkedin_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Linkedin Id"}, "meta_client_application_instance": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Meta Client Application Instance"}}, "required": ["id", "firstname", "lastname"], "title": "UserOutSearch", "type": "object"}, "SearchInSimple": {"properties": {"name": {"title": "Name", "type": "string"}}, "required": ["name"], "title": "SearchInSimple", "type": "object"}, "MemberIn": {"properties": {"email": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Email"}, "icebreaker": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Icebreaker"}, "phone": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Phone"}, "labels": {"anyOf": [{"items": {"type": "string"}, "type": "array"}, {"type": "null"}], "title": "Labels"}, "pipeline": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Pipeline"}, "step": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Step"}, "custom": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Custom"}}, "title": "MemberIn", "type": "object"}, "CampaignOut": {"description": "CampaignOut schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "user": {"title": "User", "type": "integer"}, "pipeline_template": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Pipeline Template"}, "name": {"maxLength": 500, "title": "Name", "type": "string"}, "source_empty": {"default": false, "title": "Source Empty", "type": "boolean"}, "total_count": {"default": 0, "title": "Total Count", "type": "integer"}, "list_remaining_count": {"default": 0, "title": "List Remaining Count", "type": "integer"}, "process_count": {"default": 0, "title": "Process Count", "type": "integer"}, "processing_count": {"default": 0, "title": "Processing Count", "type": "integer"}, "autofinish": {"default": true, "title": "Autofinish", "type": "boolean"}, "connections_interval": {"default": 6, "title": "Connections Interval", "type": "integer"}, "recipient_from": {"default": "list", "maxLength": 20, "title": "Recipient From", "type": "string"}, "recipient_from_list": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From List"}, "recipient_from_list_filter": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Recipient From List Filter"}, "recipient_from_label": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label"}, "recipient_from_label2": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label2"}, "recipient_from_label3": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label3"}, "recipient_from_label_ignore1": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Ignore1"}, "recipient_from_label_ignore2": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Ignore2"}, "recipient_from_label_ignore3": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Ignore3"}, "recipient_from_contacts_ignore": {"default": false, "title": "Recipient From Contacts Ignore", "type": "boolean"}, "recipient_from_campaigns_ignore": {"default": false, "title": "Recipient From Campaigns Ignore", "type": "boolean"}, "recipient_from_connections_ignore": {"default": false, "title": "Recipient From Connections Ignore", "type": "boolean"}, "recipient_from_conversations_ignore": {"default": false, "title": "Recipient From Conversations Ignore", "type": "boolean"}, "recipient_from_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Step"}, "recipient_from_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Recipient From Step Name"}, "board": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Board"}, "board_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Board Name"}, "action_visit": {"default": false, "title": "Action Visit", "type": "boolean"}, "action_visit_update": {"default": false, "title": "Action Visit Update", "type": "boolean"}, "action_visit_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Visit Step"}, "action_visit_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Visit Step Name"}, "action_follow": {"default": false, "title": "Action Follow", "type": "boolean"}, "action_follow_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Follow Step"}, "action_follow_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Follow Step Name"}, "action_like": {"default": false, "title": "Action Like", "type": "boolean"}, "action_like_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Like Step"}, "action_like_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Like Step Name"}, "action_answered_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Answered Step"}, "action_answered_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Answered Step Name"}, "action_error_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Error Step"}, "action_error_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Error Step Name"}, "action_connect": {"default": false, "title": "Action Connect", "type": "boolean"}, "action_connect_wait_days": {"default": 0, "title": "Action Connect Wait Days", "type": "integer"}, "action_connect_wait_hours": {"default": 0, "title": "Action Connect Wait Hours", "type": "integer"}, "action_connect_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Connect Prompt"}, "action_connect_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Connect Aicontext"}, "action_connect_message": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Action Connect Message"}, "action_connect_message_alternate": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Action Connect Message Alternate"}, "action_connect_step_requested": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Connect Step Requested"}, "action_connect_step_requested_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Connect Step Requested Name"}, "action_connect_step_accepted": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Connect Step Accepted"}, "action_connect_step_accepted_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Connect Step Accepted Name"}, "action_connect_step_ignored_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Connect Step Ignored Name"}, "action_connect_step_ignored": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Connect Step Ignored"}, "action_connect_labels": {"items": {}, "title": "Action Connect Labels", "type": "array"}, "action_connect_answered_labels": {"items": {}, "title": "Action Connect Answered Labels", "type": "array"}, "action_connect_ignore_days": {"default": 4, "title": "Action Connect Ignore Days", "type": "integer"}, "action_connect_ignore_delete": {"default": false, "title": "Action Connect Ignore Delete", "type": "boolean"}, "action_connect_skip_openprofile": {"default": false, "title": "Action Connect Skip Openprofile", "type": "boolean"}, "action_message_1_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 1 Prompt"}, "action_message_1_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 1 Aicontext"}, "action_message_1": {"default": false, "title": "Action Message 1", "type": "boolean"}, "action_message_1_wait_days": {"default": 0, "title": "Action Message 1 Wait Days", "type": "integer"}, "action_message_1_wait_hours": {"default": 0, "title": "Action Message 1 Wait Hours", "type": "integer"}, "action_message_1_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 1 Content"}, "action_message_1_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 1 Attachment"}, "action_message_1_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 1 Attachment Alternate"}, "action_message_1_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 1 Alternate"}, "action_message_1_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 1 Step Sent"}, "action_message_1_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 1 Step Sent Name"}, "action_message_1_labels": {"items": {}, "title": "Action Message 1 Labels", "type": "array"}, "action_message_1_ignore_days": {"default": 4, "title": "Action Message 1 Ignore Days", "type": "integer"}, "action_message_2": {"default": false, "title": "Action Message 2", "type": "boolean"}, "action_message_2_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 2 Prompt"}, "action_message_2_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 2 Aicontext"}, "action_message_2_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 2 Content"}, "action_message_2_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 2 Alternate"}, "action_message_2_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 2 Attachment"}, "action_message_2_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 2 Attachment Alternate"}, "action_message_2_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 2 Step Sent"}, "action_message_2_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 2 Step Sent Name"}, "action_message_2_labels": {"items": {}, "title": "Action Message 2 Labels", "type": "array"}, "action_message_2_ignore_days": {"default": 4, "title": "Action Message 2 Ignore Days", "type": "integer"}, "action_message_3": {"default": false, "title": "Action Message 3", "type": "boolean"}, "action_message_3_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 3 Prompt"}, "action_message_3_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 3 Aicontext"}, "action_message_3_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 3 Content"}, "action_message_3_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 3 Alternate"}, "action_message_3_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 3 Attachment"}, "action_message_3_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 3 Attachment Alternate"}, "action_message_3_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 3 Step Sent"}, "action_message_3_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 3 Step Sent Name"}, "action_message_3_labels": {"items": {}, "title": "Action Message 3 Labels", "type": "array"}, "action_message_3_ignore_days": {"default": 4, "title": "Action Message 3 Ignore Days", "type": "integer"}, "action_message_4": {"default": false, "title": "Action Message 4", "type": "boolean"}, "action_message_4_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 4 Prompt"}, "action_message_4_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 4 Aicontext"}, "action_message_4_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 4 Content"}, "action_message_4_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 4 Alternate"}, "action_message_4_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 4 Attachment"}, "action_message_4_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 4 Attachment Alternate"}, "action_message_4_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 4 Step Sent"}, "action_message_4_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 4 Step Sent Name"}, "action_message_4_labels": {"items": {}, "title": "Action Message 4 Labels", "type": "array"}, "action_message_4_ignore_days": {"default": 4, "title": "Action Message 4 Ignore Days", "type": "integer"}, "action_message_5": {"default": false, "title": "Action Message 5", "type": "boolean"}, "action_message_5_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 5 Prompt"}, "action_message_5_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 5 Aicontext"}, "action_message_5_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 5 Content"}, "action_message_5_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 5 Alternate"}, "action_message_5_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 5 Attachment"}, "action_message_5_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 5 Attachment Alternate"}, "action_message_5_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 5 Step Sent"}, "action_message_5_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 5 Step Sent Name"}, "action_message_5_labels": {"items": {}, "title": "Action Message 5 Labels", "type": "array"}, "action_message_5_ignore_days": {"default": 4, "title": "Action Message 5 Ignore Days", "type": "integer"}, "action_message_6": {"default": false, "title": "Action Message 6", "type": "boolean"}, "action_message_6_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 6 Prompt"}, "action_message_6_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 6 Aicontext"}, "action_message_6_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 6 Content"}, "action_message_6_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 6 Alternate"}, "action_message_6_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 6 Attachment"}, "action_message_6_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 6 Attachment Alternate"}, "action_message_6_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 6 Step Sent"}, "action_message_6_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 6 Step Sent Name"}, "action_message_6_labels": {"items": {}, "title": "Action Message 6 Labels", "type": "array"}, "action_message_6_ignore_days": {"default": 4, "title": "Action Message 6 Ignore Days", "type": "integer"}, "action_message_7": {"default": false, "title": "Action Message 7", "type": "boolean"}, "action_message_7_prompt": {"anyOf": [{"maxLength": 50000, "type": "string"}, {"type": "null"}], "title": "Action Message 7 Prompt"}, "action_message_7_aicontext": {"anyOf": [{"type": "object"}, {"type": "null"}], "title": "Action Message 7 Aicontext"}, "action_message_7_content": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 7 Content"}, "action_message_7_alternate": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Message 7 Alternate"}, "action_message_7_attachment": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 7 Attachment"}, "action_message_7_attachment_alternate": {"anyOf": [{"maxLength": 100000, "type": "string"}, {"type": "null"}], "title": "Action Message 7 Attachment Alternate"}, "action_message_7_step_sent": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Message 7 Step Sent"}, "action_message_7_step_sent_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Message 7 Step Sent Name"}, "action_message_7_labels": {"items": {}, "title": "Action Message 7 Labels", "type": "array"}, "action_message_7_ignore_days": {"default": 4, "title": "Action Message 7 Ignore Days", "type": "integer"}, "action_aiconv": {"default": false, "title": "Action Aiconv", "type": "boolean"}, "action_aiconv_goal": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Aiconv Goal"}, "action_aiconv_offer": {"anyOf": [{"maxLength": 10000, "type": "string"}, {"type": "null"}], "title": "Action Aiconv Offer"}, "action_aiconv_mode": {"default": "AUTOPILOT", "maxLength": 20, "title": "Action Aiconv Mode", "type": "string"}, "action_conv_max_messages": {"default": 3, "title": "Action Conv Max Messages", "type": "integer"}, "action_aiconv_step": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Aiconv Step"}, "action_aiconv_step_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Aiconv Step Name"}, "error": {"anyOf": [{"maxLength": 100, "type": "string"}, {"type": "null"}], "title": "Error"}, "status": {"default": "DRAFT", "maxLength": 20, "title": "Status", "type": "string"}, "icp_enabled": {"default": false, "title": "Icp Enabled", "type": "boolean"}, "icp_exclude": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Icp Exclude"}, "icp_industry": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Icp Industry"}, "icp_geography": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Icp Geography"}, "icp_functions": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Icp Functions"}, "icp_company_size": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Icp Company Size"}, "icp_filter": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "strong", "title": "Icp Filter"}, "action_icp_step_filtered": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Icp Step Filtered"}, "action_icp_step_filtered_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Icp Step Filtered Name"}, "action_icp_step_notfiltered": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Action Icp Step Notfiltered"}, "action_icp_step_notfiltered_name": {"anyOf": [{"maxLength": 500, "type": "string"}, {"type": "null"}], "title": "Action Icp Step Notfiltered Name"}, "scheduled_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Scheduled At"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "users": {"items": {"type": "integer"}, "title": "Users", "type": "array"}, "recipient_from_list_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From List Id"}, "pipeline_template_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Pipeline Template Id"}, "recipient_from_label_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Id"}, "recipient_from_label2_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label2 Id"}, "recipient_from_label3_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label3 Id"}, "recipient_from_label_ignore1_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Ignore1 Id"}, "recipient_from_label_ignore2_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Ignore2 Id"}, "recipient_from_label_ignore3_id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "Recipient From Label Ignore3 Id"}, "action_connect_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_1_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_2_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_3_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_4_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_5_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_6_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}, "action_message_7_aifile": {"anyOf": [{"$ref": "#/components/schemas/UploadedFileOut"}, {"type": "null"}]}}, "required": ["user", "name", "updated_at", "created_at", "users"], "title": "CampaignOut", "type": "object"}, "UploadedFileOut": {"description": "UploadedFile schema", "properties": {"id": {"anyOf": [{"type": "integer"}, {"type": "null"}], "title": "ID"}, "original_filename": {"maxLength": 500, "title": "Original Filename", "type": "string"}, "file_size": {"description": "File size in bytes", "title": "File Size", "type": "integer"}, "content_type": {"anyOf": [{"maxLength": 200, "type": "string"}, {"type": "null"}], "description": "MIME type", "title": "Content Type"}, "description": {"anyOf": [{"maxLength": 1000, "type": "string"}, {"type": "null"}], "title": "Description"}, "created_at": {"format": "date-time", "title": "Created At", "type": "string"}, "updated_at": {"format": "date-time", "title": "Updated At", "type": "string"}}, "required": ["original_filename", "file_size", "created_at", "updated_at"], "title": "UploadedFileOut", "type": "object"}, "GroupByStat": {"enum": ["year", "month", "week", "day"], "title": "GroupByStat", "type": "string"}, "StatOut": {"properties": {"count": {"title": "Count", "type": "integer"}, "date": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Date"}}, "required": ["count", "date"], "title": "StatOut", "type": "object"}, "ConversationMessageOut": {"description": "Schema for individual conversation messages", "properties": {"id": {"title": "Id", "type": "string"}, "text": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Text"}, "html": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Html"}, "attachment_url": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Attachment Url"}, "attachment_name": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Attachment Name"}, "attachment_type": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Attachment Type"}, "from_linkedin_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "From Linkedin Id"}, "from_firstname": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "From Firstname"}, "from_lastname": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "From Lastname"}, "created_at": {"anyOf": [{"format": "date-time", "type": "string"}, {"type": "null"}], "title": "Created At"}, "is_from_user": {"default": false, "title": "Is From User", "type": "boolean"}, "message_type": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": "text", "title": "Message Type"}}, "required": ["id"], "title": "ConversationMessageOut", "type": "object"}, "ConversationMessagesOut": {"description": "Schema for conversation messages response", "properties": {"conversation_id": {"title": "Conversation Id", "type": "string"}, "conversation_linkedin_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Conversation Linkedin Id"}, "participant_id": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Participant Id"}, "participant_name": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Participant Name"}, "messages": {"items": {"$ref": "#/components/schemas/ConversationMessageOut"}, "title": "Messages", "type": "array"}, "total_count": {"title": "Total Count", "type": "integer"}, "has_more": {"default": false, "title": "Has More", "type": "boolean"}, "next_cursor": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Next Cursor"}}, "required": ["conversation_id", "messages", "total_count"], "title": "ConversationMessagesOut", "type": "object"}, "MessageInSimple": {"properties": {"message": {"title": "Message", "type": "string"}, "recipient_linkedin_id": {"title": "Recipient Linkedin Id", "type": "string"}}, "required": ["message", "recipient_linkedin_id"], "title": "MessageInSimple", "type": "object"}, "ConnectionRequest": {"properties": {"message": {"anyOf": [{"type": "string"}, {"type": "null"}], "title": "Message"}, "recipient_linkedin_id": {"title": "Recipient Linkedin Id", "type": "string"}}, "required": ["message", "recipient_linkedin_id"], "title": "ConnectionRequest", "type": "object"}}, "securitySchemes": {"ApiKey": {"type": "apiKey", "in": "header", "name": "X-API-Key"}, "ApiKeyQueryAuth": {"type": "apiKey", "in": "query", "name": "api_key"}}}, "servers": []}