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

# Mark an offer on one of your cards as seen

> Mark an offer on one of your cards as seen; the owner's desk shows it read.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/khali/offers/{offer_id}/seen
openapi: 3.1.0
info:
  title: Truckaurbus API
  version: v1
  description: >-
    The public v1 API at https://api.truckaurbus.com/v1. Authenticate with an
    API key in the Authorization header: Bearer tab_live_...


    Every figure carries its kind and its date. The API never carries the page a
    value came from.
servers:
  - url: https://api.truckaurbus.com
security: []
paths:
  /v1/khali/offers/{offer_id}/seen:
    post:
      tags:
        - v1
      summary: Mark an offer on one of your cards as seen
      description: >-
        Mark an offer on one of your cards as seen; the owner's desk shows it
        read.
      operationId: identity_api_v1_khali_seen
      parameters:
        - in: path
          name: offer_id
          required: true
          schema:
            title: Offer Id
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
          description: OK

````