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

# Get account-level allowlist rule

> Retrieves a single account-level allowlist rule with all its conditions



## OpenAPI

````yaml /openapi.json get /inbound/account/allowlist/{uuid}
openapi: 3.0.0
info:
  title: JetEmail API
  version: 1.0.0
  description: API documentation for JetEmail's transactional email service.
servers:
  - url: https://api.jetemail.com
    description: Production
security:
  - apiKeyAuth: []
externalDocs:
  description: Download OpenAPI Specification
  url: /openapi.json
paths:
  /inbound/account/allowlist/{uuid}:
    get:
      tags:
        - Inbound
      summary: Get account-level allowlist rule
      description: Retrieves a single account-level allowlist rule with all its conditions
      parameters:
        - name: uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: UUID of the account allowlist rule
      responses:
        '200':
          description: Successfully retrieved rule
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  rule:
                    type: object
                    description: >-
                      Rule object with conditions (same schema as list response
                      items)
        '403':
          description: Forbidden - Rule not owned by caller
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Forbidden
        '404':
          description: Rule not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: Not found
components:
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: API key for account management endpoints. Use your api_ prefixed token.

````