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

# Recent view events for the team (newest-first)



## OpenAPI

````yaml https://app.paperlink.online/api/mobile/openapi.json get /api/mobile/views
openapi: 3.1.0
info:
  title: PaperLink Mobile API
  version: 1.0.0
  description: >-
    Device-session API for the PaperLink mobile app. Tokens are per-user (no
    team baked in); the acting team is sent per request via X-Team-Id and the
    role is resolved live.
  contact:
    name: PaperLink Support
    url: https://paperlink.online
servers:
  - url: https://app.paperlink.online
    description: Production
security:
  - BearerAuth: []
paths:
  /api/mobile/views:
    get:
      tags:
        - Data
      summary: Recent view events for the team (newest-first)
      operationId: mobileListViews
      parameters:
        - $ref: '#/components/parameters/TeamHeader'
        - name: take
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 30
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: OK
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Not a member of this team
components:
  parameters:
    TeamHeader:
      name: X-Team-Id
      in: header
      required: true
      schema:
        type: string
        format: uuid
      description: Selected team; the role is resolved live for this team.
  responses:
    Unauthorized:
      description: Missing, expired, or revoked token
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````