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

# Get quick send trigger status

> Read the outcome of a quick send trigger: whether the room was created, its id, and the status of every scheduled invitation. Authenticate using Bearer token with your Noux API key.



## OpenAPI

````yaml /openapi.json get /api/v1/quick-send/trigger/{id}
openapi: 3.0.0
info:
  title: Noux REST API
  version: 1.0.0
  description: >-
    OpenAPI specification for the Noux REST API. Human-readable reference:
    https://docs.nouxdigital.com/api/overview
  contact:
    name: Noux Digital Oy
    url: https://nouxdigital.com/
servers:
  - url: https://api.noux.app
    description: Production API
  - url: http://localhost:4000
    description: Local development
security: []
paths:
  /api/v1/quick-send/trigger/{id}:
    get:
      tags:
        - Quick send
      summary: Get quick send trigger status
      description: >-
        Read the outcome of a quick send trigger: whether the room was created,
        its id, and the status of every scheduled invitation. Authenticate using
        Bearer token with your Noux API key.
      parameters:
        - schema:
            type: string
            description: The trigger id returned by POST /api/v1/quick-send/trigger
          required: true
          description: The trigger id returned by POST /api/v1/quick-send/trigger
          name: id
          in: path
        - schema:
            type: string
            description: Bearer token with Noux API key
          required: true
          description: Bearer token with Noux API key
          name: authorization
          in: header
      responses:
        '200':
          description: Trigger status retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  triggerId:
                    type: string
                  status:
                    type: string
                    enum:
                      - Queued
                      - RoomCreated
                      - Failed
                    description: Queued until the room exists, then RoomCreated or Failed
                  roomId:
                    type: string
                    nullable: true
                    description: Set once the room has been created
                  scheduledSendAt:
                    type: string
                    description: ISO timestamp when the invitations are sent
                  failureReason:
                    type: string
                    nullable: true
                  deliveries:
                    type: array
                    items:
                      type: object
                      properties:
                        inviteeEmail:
                          type: string
                        sendAt:
                          type: string
                        status:
                          type: string
                          enum:
                            - Scheduled
                            - Sent
                            - Cancelled
                            - Failed
                      required:
                        - inviteeEmail
                        - sendAt
                        - status
                required:
                  - triggerId
                  - status
                  - roomId
                  - scheduledSendAt
                  - failureReason
                  - deliveries
        '401':
          description: Unauthorized - invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: boolean
                    enum:
                      - true
                    description: Indicates this is an error response
                  code:
                    type: string
                    enum:
                      - PARSE_ERROR
                      - BAD_REQUEST
                      - INTERNAL_SERVER_ERROR
                      - NOT_IMPLEMENTED
                      - METHOD_NOT_SUPPORTED
                      - TIMEOUT
                      - CONFLICT
                      - PRECONDITION_FAILED
                      - PAYLOAD_TOO_LARGE
                      - UNPROCESSABLE_CONTENT
                      - TOO_MANY_REQUESTS
                      - CLIENT_CLOSED_REQUEST
                      - INVALID_INPUT
                      - UNAUTHORIZED
                      - NOT_FOUND
                      - FORBIDDEN
                      - INVALID_STATE
                      - SERVER_ERROR
                    description: Error code for programmatic handling
                  message:
                    type: string
                    description: Human-readable error message
                required:
                  - error
                  - code
                  - message
        '404':
          description: Trigger not found for this organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: boolean
                    enum:
                      - true
                    description: Indicates this is an error response
                  code:
                    type: string
                    enum:
                      - PARSE_ERROR
                      - BAD_REQUEST
                      - INTERNAL_SERVER_ERROR
                      - NOT_IMPLEMENTED
                      - METHOD_NOT_SUPPORTED
                      - TIMEOUT
                      - CONFLICT
                      - PRECONDITION_FAILED
                      - PAYLOAD_TOO_LARGE
                      - UNPROCESSABLE_CONTENT
                      - TOO_MANY_REQUESTS
                      - CLIENT_CLOSED_REQUEST
                      - INVALID_INPUT
                      - UNAUTHORIZED
                      - NOT_FOUND
                      - FORBIDDEN
                      - INVALID_STATE
                      - SERVER_ERROR
                    description: Error code for programmatic handling
                  message:
                    type: string
                    description: Human-readable error message
                required:
                  - error
                  - code
                  - message
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Noux API key from your integration settings

````