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

# Close one of your cards: the load was taken (reason=taken) or you changed your mind

> Close one of your cards: reason=taken when the load was found, owner when you changed your mind.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/khali/{availability_id}/close
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/{availability_id}/close:
    post:
      tags:
        - v1
      summary: >-
        Close one of your cards: the load was taken (reason=taken) or you
        changed your mind
      description: >-
        Close one of your cards: reason=taken when the load was found, owner
        when you changed your mind.
      operationId: identity_api_v1_khali_close
      parameters:
        - in: path
          name: availability_id
          required: true
          schema:
            title: Availability Id
            type: integer
        - in: query
          name: reason
          required: false
          schema:
            default: owner
            title: Reason
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
          description: OK

````