SendPulse Automation 360 API

Event-driven automation flows across email, SMS, web push and messengers, with element-level statistics and conversion tracking.

OpenAPI Specification

sendpulse-a360-openapi.yml Raw ↑
openapi: 3.1.2
info:
  title: SendPulse Automation 360 API
  version: 1.0.0
  description: API for managing and analyzing automation flows (autoflows).
  x-ai-description: >
    Automation 360 (A360) is the brain of omnichannel marketing at SendPulse. 
    It allows for creating complex, event-driven subscriber journeys across
    email, SMS, Web Push, and Messengers.  This API provides the tools to
    monitor these journeys, audit performance at a granular element level, and
    track conversions.
  license:
    name: Apache 2.0
    identifier: Apache-2.0
servers:
  - url: https://api.sendpulse.com
    description: Production server
security:
  - apiKey: []
  - oauth2: []
tags:
  - name: Automation Flows
    description: Endpoints related to Automation Flows.
  - name: Element Statistics
    description: Endpoints related to Element Statistics.
  - name: Conversions
    description: Endpoints related to Conversions.
  - name: Events
    description: Endpoints related to Events.
paths:
  /a360/autoresponders/list:
    get:
      tags:
        - Automation Flows
      summary: Get a list of automation flows
      operationId: getAutomationFlows
      description: Retrieve all autoflows in your account.
      x-ai-role: marketing_automation_specialist
      x-ai-description: >-
        Provides a high-level inventory of active and inactive marketing
        automations.
      x-ai-reasoning-instructions:
        - Use 'limit' and 'offset' for efficient data retrieval.
        - Identify flows with status 1 (Active) for priority monitoring.
      x-ai-responding-instructions:
        - Summarize the total number of flows.
        - Highlight IDs for active flows.
      x-ai-suggestions:
        - 'limit: 50'
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 100
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of automation flows
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/AutomationFlow'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /a360/autoresponders/{ID}:
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
    get:
      tags:
        - Automation Flows
      summary: Get statistics about an automation flow
      operationId: getAutomationFlowStats
      x-ai-role: data_analyst
      x-ai-description: Detailed structure and summary metrics for a specific flow.
      x-ai-reasoning-instructions:
        - Map the flow structure to understand the subscriber journey.
        - Compare 'starts' vs 'end_count' for conversion funnel analysis.
      x-ai-responding-instructions:
        - Explain the flow's current state and high-level performance.
      x-ai-suggestions:
        - Check element-level stats next.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      responses:
        '200':
          description: Flow stats
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutomationFlowStats'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
  /a360/autoresponders/{ID}/total-stats:
    get:
      tags:
        - Element Statistics
      summary: Get statistics about each element
      operationId: getElementTotalStats
      x-ai-role: data_analyst
      x-ai-description: Aggregated performance metrics for every node in the automation.
      x-ai-reasoning-instructions:
        - Identify nodes with unexpected drop-offs or high error rates.
      x-ai-responding-instructions:
        - Summarize the execution counts for all elements.
      x-ai-suggestions:
        - 'flow_type: ''email'''
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters:
        - name: flow_type
          in: query
          schema:
            type: string
        - name: deleted
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Element stats
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/main-trigger/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Start element stats
      operationId: getStartStats
      x-ai-role: marketing_automation_specialist
      x-ai-description: Entry point analysis for the automation.
      x-ai-reasoning-instructions:
        - Verify trigger frequency matches expectations.
      x-ai-responding-instructions:
        - Report entry counts.
      x-ai-suggestions:
        - Check triggered addresses.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/email/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Email element stats
      operationId: getEmailStats
      x-ai-role: email_deliverability_expert
      x-ai-description: Engagement metrics for an email node.
      x-ai-reasoning-instructions:
        - Monitor open/click rates.
      x-ai-responding-instructions:
        - Provide engagement summary.
      x-ai-suggestions:
        - View clickers list.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/push/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Push element stats
      operationId: getPushStats
      x-ai-role: marketing_automation_specialist
      x-ai-description: Web push notification performance.
      x-ai-reasoning-instructions:
        - Check delivery and click rates.
      x-ai-responding-instructions:
        - Report push engagement.
      x-ai-suggestions:
        - View push recipients.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/sms/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get SMS element stats
      operationId: getSmsStats
      x-ai-role: marketing_automation_specialist
      x-ai-description: SMS delivery and status tracking.
      x-ai-reasoning-instructions:
        - Monitor for delivery errors.
      x-ai-responding-instructions:
        - Report SMS delivery status.
      x-ai-suggestions:
        - View SMS logs.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/messenger/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Messenger element stats
      operationId: getMessengerStats
      x-ai-role: marketing_automation_specialist
      x-ai-description: Chatbot and messenger interaction stats.
      x-ai-reasoning-instructions:
        - Track execution counts.
      x-ai-responding-instructions:
        - Report messenger engagement.
      x-ai-suggestions:
        - View messenger logs.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/filter/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Filter element stats
      operationId: getFilterStats
      x-ai-role: data_analyst
      x-ai-description: Segmentation logic performance.
      x-ai-reasoning-instructions:
        - Evaluate filter pass/fail ratios.
      x-ai-responding-instructions:
        - Report filter execution.
      x-ai-suggestions:
        - View filtered contacts.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/trigger/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Condition element stats
      operationId: getConditionStats
      x-ai-role: data_analyst
      x-ai-description: Conditional branching logic performance.
      x-ai-reasoning-instructions:
        - Check branch distribution.
      x-ai-responding-instructions:
        - Report condition outcomes.
      x-ai-suggestions:
        - View branched contacts.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/goal/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Goal element stats
      operationId: getGoalStats
      x-ai-role: crm_manager
      x-ai-description: Tracking achievement of specific flow objectives.
      x-ai-reasoning-instructions:
        - Calculate goal conversion rate.
      x-ai-responding-instructions:
        - Report goal achievements.
      x-ai-suggestions:
        - View goal achievers.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/stats/action/{ID}/group-stat:
    get:
      tags:
        - Element Statistics
      summary: Get Action element stats
      operationId: getActionStats
      x-ai-role: marketing_automation_specialist
      x-ai-description: Back-end operations (e.g., move to list) performance.
      x-ai-reasoning-instructions:
        - Verify action execution.
      x-ai-responding-instructions:
        - Report action completions.
      x-ai-suggestions:
        - Check target list for updates.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: ID
        in: path
        required: true
        schema:
          type: integer
  /a360/autoresponders/{id}/conversions:
    get:
      tags:
        - Conversions
      summary: Get flow conversions
      operationId: getConversions
      x-ai-role: crm_manager
      x-ai-description: Primary success metrics for the entire automation journey.
      x-ai-reasoning-instructions:
        - Analyze conversion sources.
      x-ai-responding-instructions:
        - Report total conversions.
      x-ai-suggestions:
        - View converted contacts.
      x-ai-capabilities:
        security_info:
          data_handling:
            - InformationRetrieval
      parameters: []
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
  /a360/events/delete-log:
    post:
      tags:
        - Events
      summary: Delete event logs
      operationId: deleteLogs
      x-ai-role: compliance_officer
      x-ai-description: Data retention management for events.
      x-ai-reasoning-instructions:
        - Warn about permanent deletion.
      x-ai-responding-instructions:
        - Confirm log clearing.
      x-ai-suggestions:
        - Identify specific event IDs.
      x-ai-capabilities:
        security_info:
          data_handling:
            - DataDestruction
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
components:
  schemas:
    AutomationFlow:
      type: object
    AutomationFlowStats:
      type: object
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >
        Static API Key authentication.  A long-lived token generated manually in
        the SendPulse account settings.
      x-ai-description: >
        Permanent authentication token. Ideal for simple integrations without
        token refresh logic.
    oauth2:
      type: oauth2
      description: OAuth 2.0 Client Credentials flow for temporary access tokens.
      flows:
        clientCredentials:
          tokenUrl: https://api.sendpulse.com/oauth/access_token
          scopes: {}
      x-ai-description: >
        Standard OAuth 2.0 flow using Client ID and Client Secret.  Provides
        temporary tokens (valid for 1 hour) for enhanced security.