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

# Get Imported Broadcast Recipients Count

> How many contacts were imported straight into this broadcast's audience.



## OpenAPI

````yaml https://api.useinvent.com/openapi.json get /orgs/{org_id}/broadcasts/{broadcast_id}/recipients/import
openapi: 3.1.0
info:
  version: 1.0.0
  title: Invent API
servers:
  - url: https://api.useinvent.com
security:
  - bearerAuth: []
paths:
  /orgs/{org_id}/broadcasts/{broadcast_id}/recipients/import:
    get:
      tags:
        - Orgs Broadcasts
      summary: Get Imported Broadcast Recipients Count
      description: How many contacts were imported straight into this broadcast's audience.
      parameters:
        - schema:
            type: string
          required: true
          description: Org ID
          name: org_id
          in: path
        - schema:
            type: string
          required: true
          description: Broadcast ID
          name: broadcast_id
          in: path
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImportedBroadcastRecipientsCountSchema'
components:
  schemas:
    ImportedBroadcastRecipientsCountSchema:
      type: object
      properties:
        contacts_count:
          type: number
      required:
        - contacts_count
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Bearer token authentication using your API key

````