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

# List Asset Access Requests

> List access requests across ALL of the calling user's assets — the request inbox. Each entry is a code-verified person asking to view one of your assets; it embeds the target asset's uuid + identifier for follow-up Grant / Dismiss calls. Pending first, then most recently updated; filter with status 'pending' for the inbox / badge count.



## OpenAPI

````yaml get /api/v2/asset/access-requests/list
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/asset/access-requests/list:
    get:
      tags:
        - Asset
      summary: List Asset Access Requests
      description: >-
        List access requests across ALL of the calling user's assets — the
        request inbox. Each entry is a code-verified person asking to view one
        of your assets; it embeds the target asset's uuid + identifier for
        follow-up Grant / Dismiss calls. Pending first, then most recently
        updated; filter with status 'pending' for the inbox / badge count.
      operationId: listAccessRequests
      parameters:
        - schema:
            type: string
            enum:
              - pending
              - granted
              - dismissed
            description: >-
              Filter by request state; omit for all. Use 'pending' for the inbox
              / badge count. e.g. 'pending'
          required: false
          description: >-
            Filter by request state; omit for all. Use 'pending' for the inbox /
            badge count. e.g. 'pending'
          name: status
          in: query
      responses:
        '200':
          description: Asset access requests listed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                          description: >-
                            Numeric id of the access request — pass it to
                            asset_access_request_grant /
                            asset_access_request_dismiss. e.g. 5
                        email:
                          type: string
                          description: >-
                            Requester's email, code-verified before the request
                            was created. e.g. 'sam@acme.com'
                        message:
                          type: string
                          nullable: true
                          description: >-
                            Optional note the requester attached; null when
                            none. e.g. 'Need this for our vendor review'
                        status:
                          type: string
                          enum:
                            - pending
                            - granted
                            - dismissed
                          description: >-
                            Request state. One of: pending (awaiting a
                            decision), granted (a share link was minted),
                            dismissed ('not now' — a re-request returns it to
                            pending). e.g. 'pending'
                        createdAt:
                          type: string
                          description: >-
                            ISO-8601 creation time. e.g.
                            '2026-07-10T09:00:00.000Z'
                        updatedAt:
                          type: string
                          description: >-
                            ISO-8601 time of the last state change. e.g.
                            '2026-07-11T14:30:00.000Z'
                        artifact:
                          type: object
                          properties:
                            uuid:
                              type: string
                              description: >-
                                UUID of the asset the request targets — use it
                                in grant/dismiss calls. e.g.
                                '4f1e2a90-8b3d-4c21-9e07-2a1b3c4d5e6f'
                            identifier:
                              type: string
                              description: >-
                                The asset's identifier/slug. e.g.
                                'q3-launch-microsite'
                          required:
                            - uuid
                            - identifier
                          description: The asset this request targets.
                      required:
                        - id
                        - email
                        - message
                        - status
                        - createdAt
                        - updatedAt
                        - artifact
                  total:
                    type: number
                required:
                  - _metadata
                  - data
                  - total
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                required:
                  - _metadata
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          example: 0
          description: API usage
        requestId:
          type: string
          example: requestId
          description: Request ID
        message:
          type: string
          example: message
          description: Message
        timestamp:
          type: string
          example: '2021-01-01T00:00:00.000Z'
          description: Timestamp
      required:
        - requestId
        - timestamp
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````