> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nudgen.net/llms.txt
> Use this file to discover all available pages before exploring further.

# List lifetime campaign executions

> Lists execution history for a lifetime campaign in the active workspace. Search treats values containing @ as an exact email lookup; other values search external contact IDs. Invalid status filters are ignored.



## OpenAPI

````yaml /openapi.json get /api/v1/campaigns/{id}/executions
openapi: 3.1.0
info:
  title: Nudgen Developer API
  version: 1.0.0
  description: >-
    REST API for contacts, campaigns, Lifetime triggers, sending domains, brand
    settings, and AI drafts. Most endpoints use a Personal Access Token;
    Lifetime triggers require a scoped team API key.
servers:
  - url: https://app.nudgen.net
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Identity
  - name: Contacts
  - name: Campaigns
  - name: Brand settings
  - name: AI
  - name: Team API keys
  - name: Sending domains
paths:
  /api/v1/campaigns/{id}/executions:
    get:
      tags:
        - Campaigns
      summary: List lifetime campaign executions
      description: >-
        Lists execution history for a lifetime campaign in the active workspace.
        Search treats values containing @ as an exact email lookup; other values
        search external contact IDs. Invalid status filters are ignored.
      operationId: listLifetimeCampaignExecutions
      parameters:
        - $ref: '#/components/parameters/Id'
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - name: cursor
          in: query
          schema:
            type: string
        - name: status
          in: query
          schema:
            type: string
            enum:
              - pending
              - queued
              - processing
              - sent
              - skipped
              - cancelled
              - failed
              - delivery_unknown
        - name: search
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Execution page
          content:
            application/json:
              schema:
                type: object
                properties:
                  executions:
                    type: array
                    items:
                      $ref: '#/components/schemas/LifetimeExecution'
                  nextCursor:
                    type:
                      - string
                      - 'null'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    Id:
      name: id
      in: path
      required: true
      schema:
        type: string
  schemas:
    LifetimeExecution:
      type: object
      properties:
        id:
          type: string
        eventId:
          type: string
        eventName:
          type:
            - string
            - 'null'
        occurredAt:
          type:
            - string
            - 'null'
          format: date-time
        source:
          type: string
        campaignVersion:
          type: integer
        status:
          type: string
          enum:
            - pending
            - queued
            - processing
            - sent
            - skipped
            - cancelled
            - failed
            - delivery_unknown
        failureCode:
          type:
            - string
            - 'null'
        failureMessage:
          type:
            - string
            - 'null'
        providerMessageId:
          type:
            - string
            - 'null'
        queuedAt:
          type:
            - string
            - 'null'
          format: date-time
        processingStartedAt:
          type:
            - string
            - 'null'
          format: date-time
        sentAt:
          type:
            - string
            - 'null'
          format: date-time
        skippedAt:
          type:
            - string
            - 'null'
          format: date-time
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        contact:
          type: object
          properties:
            id:
              type: string
            email:
              type: string
              format: email
            name:
              type:
                - string
                - 'null'
            externalId:
              type:
                - string
                - 'null'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
  responses:
    Unauthorized:
      description: Missing, invalid, revoked, or expired token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: PAT
      description: Personal Access Token created from Settings -> API Keys.

````