lemlist Tasks API

Manual tasks - list, create, update and ignore.

Operations 4

GET /tasks Tasks
POST /tasks Tasks
PATCH /tasks Tasks
POST /tasks/ignore Ignore tasks

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lemlist-tasks-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lemlist-tasks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lemlist Tasks API
  version: 1.0.0
  description: 'Operations tagged Tasks across 3 of this provider''s published API definitions: lemlist-openapi-v1-legacy.json, lemlist-openapi-v2.json, lemlist-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.lemlist.com/api
tags:
- name: Tasks
paths:
  /tasks:
    parameters: []
    get:
      summary: Tasks
      tags:
      - Tasks
      parameters: []
      responses:
        default:
          headers:
            Content-Type:
              schema:
                type: string
              example: application/json
          description: Tasks
          content:
            application/json:
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        _id:
                          type: string
                        type:
                          type: string
                        leadId:
                          type: string
                        campaignId:
                          type: string
                        contactId:
                          type: string
                        dueDate:
                          type: string
                          format: date-time
                        userId:
                          type: string
                  page:
                    type: integer
              example:
                results:
                - _id: opp_vDuwoqRopZ4ygeApq
                  type: phone
                  leadId: lea_4ZnGoytR5uoZs7Bod
                  campaignId: cam_fX7SwMGyooxFLeeiM
                  contactId: ctc_iSW6pi7AFnufvhgeS
                  dueDate: '2025-02-13T10:02:35.209Z'
                  userId: usr_6Y58qbtsYv2rCHQiJ
                - _id: opp_22vSBY7pNKskQ9XDX
                  type: phone
                  leadId: lea_4QqkLsi3gDawLsRLP
                  campaignId: cam_fX7SwMGyooxFLeeiM
                  contactId: ctc_Ak6dK4XGT73kgYoHe
                  dueDate: '2025-02-13T10:02:35.208Z'
                  userId: usr_6Y58qbtsYv2rCHQiJ
                - _id: opp_wa9CizcCzWMyWQMab
                  type: phone
                  leadId: lea_T478Y3PBtunxLA3uD
                  campaignId: cam_ZoNvbA4nnE9T3T3Xp
                  contactId: ctc_Bpy8KPvJuCkGGbYJ2
                  dueDate: '2025-02-13T09:08:53.061Z'
                  userId: usr_6Y58qbtsYv2rCHQiJ
                - _id: opp_qJFeKB4pdofKAiTpS
                  type: phone
                  leadId: lea_fZKPKs29MwsZwruj8
                  campaignId: cam_ZoNvbA4nnE9T3T3Xp
                  contactId: ctc_8dKYwwv2pGmupjamP
                  dueDate: '2025-02-13T09:08:53.061Z'
                  userId: usr_6Y58qbtsYv2rCHQiJ
                page: 0
    post:
      summary: Tasks
      tags:
      - Tasks
      parameters: []
      responses:
        default:
          headers: {}
          description: Tasks
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                leadId:
                  type: string
            example:
              leadId: lea_sMsXBnXd7mG2XdxFR
    patch:
      summary: Tasks
      tags:
      - Tasks
      parameters: []
      responses:
        default:
          headers: {}
          description: Opportunities
    servers:
    - url: https://api.lemlist.com/api
  /tasks/ignore:
    parameters: []
    post:
      summary: Ignore tasks
      tags:
      - Tasks
      parameters: []
      responses:
        default:
          headers: {}
          description: Ignore tasks
    servers:
    - url: https://api.lemlist.com/api
components:
  schemas:
    Task:
      type: object
      description: A manual action assigned to a user to complete.
      properties:
        _id:
          type: string
          description: Unique task identifier
        type:
          type: string
          description: Task type
        leadId:
          type: string
          description: Associated lead ID
        campaignId:
          type: string
          description: Campaign ID
        userId:
          type: string
          description: Assigned user ID
        status:
          type: string
          description: Task status
          enum:
          - pending
          - completed
          - ignored
        dueDate:
          type: string
          format: date-time
          description: Due date timestamp
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
        completedAt:
          type: string
          format: date-time
          description: Completion timestamp
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
x-refined-from:
- lemlist-openapi-v1-legacy.json
- lemlist-openapi-v2.json
- lemlist-openapi.yml