> ## Documentation Index
> Fetch the complete documentation index at: https://help.scribe-mail.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List per-email signature installation state



## OpenAPI

````yaml /api-reference/openapi.json get /v1/signature_installations
openapi: 3.0.1
info:
  title: Scribe Public API
  version: v1
  description: >-
    REST API to manage email signatures, teammates, smart fields, and marketing
    campaigns in your Scribe workspace. Every request uses JSON and is
    authenticated with a workspace API key. Endpoints are versioned under `/v1`,
    for example `https://api.scribe-mail.com/v1/signatures`.
  contact:
    name: Scribe Support
    url: https://help.scribe-mail.com/en
servers:
  - url: https://api.scribe-mail.com
    description: Production
security: []
tags:
  - name: Signatures
    description: >-
      Create, update, publish, and install email signature templates, and
      control which teammates each signature is assigned to.
  - name: Teammates
    description: >-
      Manage the people whose signatures Scribe deploys, and set their smart
      field values.
  - name: Emails
    description: >-
      Manage teammate email addresses, including the aliases that receive a
      signature.
  - name: Smart fields
    description: >-
      Define the dynamic fields, such as job title, phone number, or calendar
      link, that populate signatures.
  - name: Folders
    description: Organize signature templates into folders.
  - name: Assets
    description: >-
      Upload and manage the images and files used across signatures and
      campaigns.
  - name: Marketing campaigns
    description: >-
      Schedule, pause, and resume the promotional banners shown in your team's
      signatures.
  - name: Integrations
    description: >-
      List the directory, HRIS, and email integrations connected to your
      workspace.
  - name: Integration entities
    description: >-
      List the org units and groups from your connected integrations, used to
      target signatures.
  - name: Financial documents
    description: List the invoices and financial documents for your workspace.
paths:
  /v1/signature_installations:
    get:
      tags:
        - Signatures
      summary: List per-email signature installation state
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
        - name: limit
          in: query
          required: false
          schema:
            type: integer
        - name: email_id
          in: query
          required: false
          schema:
            type: string
        - name: email_address
          in: query
          required: false
          schema:
            type: string
        - name: signature_template_id
          in: query
          required: false
          schema:
            type: string
        - name: integration_id
          in: query
          required: false
          schema:
            type: string
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - installed
              - failed
              - uninstalled
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/signature_installation_list_response'
        '403':
          description: Insufficient scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error_response'
        '422':
          description: Unknown filter id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validation_error_response'
      security:
        - ApiKey: []
components:
  schemas:
    signature_installation_list_response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/signature_installation_list'
        pagination:
          $ref: '#/components/schemas/offset_pagination'
      required:
        - data
        - pagination
      additionalProperties: false
    error_response:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
          required:
            - type
            - code
            - message
          additionalProperties: false
        remediation:
          type: object
          description: >-
            Optional dashboard hand-off: where to send the user to unblock the
            request (e.g. connect an integration). Present on some 403/409
            responses.
          properties:
            action:
              type: string
              enum:
                - connect_integration
                - manage_in_dashboard
                - upgrade_plan
            dashboard_url:
              type: string
              format: uri
            message:
              type: string
          required:
            - action
            - dashboard_url
            - message
          additionalProperties: false
      required:
        - error
      additionalProperties: false
    validation_error_response:
      type: object
      properties:
        error:
          type: object
          properties:
            type:
              type: string
            code:
              type: string
            message:
              type: string
          required:
            - type
            - code
            - message
          additionalProperties: false
        details:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
              code:
                type: string
              message:
                type: string
              allowed:
                type: array
                description: >-
                  For an enum/const violation: the permitted values for this
                  field. Present only when the list is small enough to inline;
                  for large enums (e.g. icon) see the content schema.
                items: {}
              missing:
                type: array
                description: 'For a missing-required violation: the absent property names.'
                items:
                  type: string
            required:
              - field
              - code
              - message
            additionalProperties: false
      required:
        - error
        - details
      additionalProperties: false
    signature_installation_list:
      type: array
      items:
        $ref: '#/components/schemas/signature_installation'
    offset_pagination:
      type: object
      description: >-
        Offset (page/limit) pagination. The single pagination shape returned by
        every paginated list endpoint in the public API.
      properties:
        page:
          type: integer
        limit:
          type: integer
        total_count:
          type: integer
        total_pages:
          type: integer
        has_more:
          type: boolean
      required:
        - page
        - limit
        - total_count
        - total_pages
        - has_more
      additionalProperties: false
    signature_installation:
      type: object
      properties:
        email_id:
          type: string
        address:
          type: string
        teammate_id:
          type: string
        signature_template_id:
          type: string
          nullable: true
        signature_template_name:
          type: string
          nullable: true
        integration_id:
          type: string
          nullable: true
        integration_kind:
          type: string
          nullable: true
        integration_name:
          type: string
          nullable: true
        email_client:
          type: string
          nullable: true
        device_kind:
          type: string
          nullable: true
        device_name:
          type: string
          nullable: true
        status:
          type: string
          enum:
            - installed
            - failed
            - uninstalled
        error_code:
          type: string
          nullable: true
          description: >-
            Installer failure code when status is failed (e.g. user_not_found,
            forbidden, channel_not_found); null otherwise.
        installation_count:
          type: integer
        first_installed_at:
          type: string
          format: date-time
          nullable: true
        last_installed_at:
          type: string
          format: date-time
          nullable: true
        last_failed_at:
          type: string
          format: date-time
          nullable: true
        uninstalled_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - email_id
        - address
        - teammate_id
        - signature_template_id
        - signature_template_name
        - integration_id
        - integration_kind
        - integration_name
        - email_client
        - device_kind
        - device_name
        - status
        - error_code
        - installation_count
        - first_installed_at
        - last_installed_at
        - last_failed_at
        - uninstalled_at
        - created_at
        - updated_at
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer

````