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

# Subscribe multiple email addresses to a v3 status page.

> Subscribe up to 100 email addresses at once. Each subscriber can be limited to specific components via config.subscribedComponents; addresses already subscribed are skipped.



## OpenAPI

````yaml post /v3/status-pages/{statusPageId}/subscribers/bulk
openapi: 3.0.0
info:
  title: Checkly Public API
  version: v1
  description: >-
    These are the docs for the newly released Checkly Public API. If you have
    any questions, please do not hesitate to get in touch with us.
servers:
  - url: https://api.checklyhq.com
security:
  - Bearer: []
tags: []
paths:
  /v3/status-pages/{statusPageId}/subscribers/bulk:
    post:
      tags:
        - Status Pages V3 Subscribers
      summary: Subscribe multiple email addresses to a v3 status page.
      description: >-
        Subscribe up to 100 email addresses at once. Each subscriber can be
        limited to specific components via config.subscribedComponents;
        addresses already subscribed are skipped.
      operationId: bulkCreateStatusPageV3SubscribersPublic
      parameters:
        - name: x-checkly-account
          in: header
          schema:
            type: string
            x-format:
              guid: true
            description: >-
              Your Checkly account ID, you can find it at
              https://app.checklyhq.com/settings/account/general
          description: >-
            Your Checkly account ID, you can find it at
            https://app.checklyhq.com/settings/account/general
        - name: statusPageId
          in: path
          schema:
            type: string
            x-format:
              guid: true
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicStatusPageV3BulkSubscribersPayload'
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicStatusPageV3BulkSubscribersResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TooManyRequestsError'
components:
  schemas:
    PublicStatusPageV3BulkSubscribersPayload:
      type: object
      properties:
        subscriptions:
          $ref: '#/components/schemas/PublicStatusPageV3SubscriberInputs'
        autoVerify:
          type: boolean
          description: >-
            Create the subscribers as verified without sending confirmation
            emails.
          default: false
      required:
        - subscriptions
    PublicStatusPageV3BulkSubscribersResponse:
      type: object
      properties:
        created:
          type: integer
          description: Subscribers created.
        skipped:
          type: integer
          description: Subscribers skipped because the address was already subscribed.
        status:
          $ref: '#/components/schemas/Model97'
      required:
        - created
        - skipped
        - status
    UnauthorizedError:
      type: object
      properties:
        statusCode:
          type: number
          enum:
            - 401
        error:
          $ref: '#/components/schemas/error'
        message:
          type: string
          example: Bad Token
        attributes:
          $ref: '#/components/schemas/attributes'
      required:
        - statusCode
        - error
    ForbiddenError:
      type: object
      properties:
        statusCode:
          type: number
          enum:
            - 403
        error:
          $ref: '#/components/schemas/Model1'
        message:
          type: string
          example: Forbidden
      required:
        - statusCode
        - error
    NotFoundError:
      type: object
      properties:
        statusCode:
          type: number
          enum:
            - 404
        error:
          $ref: '#/components/schemas/Model4'
        message:
          type: string
          example: Not Found
      required:
        - statusCode
        - error
    TooManyRequestsError:
      type: object
      properties:
        statusCode:
          type: number
          enum:
            - 429
        error:
          $ref: '#/components/schemas/Model2'
        message:
          type: string
          example: Too Many Requests
        attributes:
          $ref: '#/components/schemas/attributes'
      required:
        - statusCode
        - error
    PublicStatusPageV3SubscriberInputs:
      type: array
      description: >-
        The subscribers to create (max 100). Addresses already subscribed are
        skipped.
      minItems: 1
      maxItems: 100
      items:
        $ref: '#/components/schemas/PublicStatusPageV3SubscriberInput'
    Model97:
      type: string
      description: The status the created subscribers got.
      enum:
        - PENDING
        - VERIFIED
    error:
      type: string
      enum:
        - Unauthorized
    attributes:
      type: object
    Model1:
      type: string
      enum:
        - Forbidden
    Model4:
      type: string
      enum:
        - Not Found
    Model2:
      type: string
      enum:
        - Too Many Requests
    PublicStatusPageV3SubscriberInput:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/Model96'
        config:
          $ref: '#/components/schemas/PublicStatusPageV3SubscriberConfig'
      required:
        - type
        - config
    Model96:
      type: string
      example: EMAIL
      enum:
        - EMAIL
    PublicStatusPageV3SubscriberConfig:
      type: object
      properties:
        address:
          type: string
          description: The email address to subscribe.
          x-format:
            email: true
        subscribedComponents:
          $ref: '#/components/schemas/PublicStatusPageV3SubscribedComponents'
      required:
        - address
    PublicStatusPageV3SubscribedComponents:
      type: array
      description: >-
        Component IDs the subscriber receives incident emails for. A GROUP id
        includes its current children. Omit or null to subscribe to every
        component.
      nullable: true
      maxItems: 200
      items:
        type: string
        x-format:
          guid: true
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: Bearer
      description: >-
        The Checkly Public API uses API keys to authenticate requests. You can
        get the API Key
        [here](https://app.checklyhq.com/settings/user/api-keys). Your API key
        is like a password: keep it secure!

        Authentication to the API is performed using the Bearer auth method in
        the Authorization header and using the account ID.

        For example, set **Authorization** header while using cURL: `curl -H
        "Authorization: Bearer [apiKey]" "X-Checkly-Account: [accountId]"` 

````