> ## 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.

# Write an offer on a card (name, phone, load, from_place, to_place, on_date, tonnage_t, amount_inr, note): it lands on the owner's desk, nowhere else

> Write an offer on a card: your name, phone and the load, with the places, the date, the tonnage and the amount where known. It lands on the owner's desk and nowhere else; the owner calls you back.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/khali/card/{code}/offers
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/card/{code}/offers:
    post:
      tags:
        - v1
      summary: >-
        Write an offer on a card (name, phone, load, from_place, to_place,
        on_date, tonnage_t, amount_inr, note): it lands on the owner's desk,
        nowhere else
      description: >-
        Write an offer on a card: your name, phone and the load, with the
        places, the date, the tonnage and the amount where known. It lands on
        the owner's desk and nowhere else; the owner calls you back.
      operationId: identity_api_v1_khali_offer
      parameters:
        - in: path
          name: code
          required: true
          schema:
            title: Code
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OfferIn'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
          description: Created
components:
  schemas:
    OfferIn:
      properties:
        amount_inr:
          anyOf:
            - type: integer
            - type: 'null'
          title: Amount Inr
        from_place:
          default: ''
          title: From Place
          type: string
        load:
          title: Load
          type: string
        name:
          title: Name
          type: string
        note:
          default: ''
          title: Note
          type: string
        on_date:
          default: ''
          title: On Date
          type: string
        phone:
          title: Phone
          type: string
        to_place:
          default: ''
          title: To Place
          type: string
        tonnage_t:
          anyOf:
            - type: number
            - type: 'null'
          title: Tonnage T
      required:
        - name
        - phone
        - load
      title: OfferIn
      type: object

````