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

# Record that an approval card for this action was rendered to its owner (bearer token)

> Stamps presented_at for a surface that painted a decidable approval card for the calling user - the Slack confirmation card acknowledges here with the asker's own token. A surface that only mentions the action must not call it. Repeat acknowledgements answer recorded=false and leave the first stamp alone.



## OpenAPI

````yaml https://platform.ankra.app/openapi.json post /api/v1/chat/actions/{action_id}/presented
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://platform.ankra.app
security: []
paths:
  /api/v1/chat/actions/{action_id}/presented:
    post:
      tags:
        - chat
      summary: >-
        Record that an approval card for this action was rendered to its owner
        (bearer token)
      description: >-
        Stamps presented_at for a surface that painted a decidable approval card
        for the calling user - the Slack confirmation card acknowledges here
        with the asker's own token. A surface that only mentions the action must
        not call it. Repeat acknowledgements answer recorded=false and leave the
        first stamp alone.
      operationId: >-
        record_chat_action_presented_api_v1_chat_actions__action_id__presented_post
      parameters:
        - in: path
          name: action_id
          required: true
          schema:
            format: uuid
            title: Action Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  action_id:
                    format: uuid
                    title: Action Id
                    type: string
                  recorded:
                    title: Recorded
                    type: boolean
                required:
                  - action_id
                  - recorded
                title: ChatActionPresentedResponse
                type: object
          description: Successful Response
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Permission check failed, or the action belongs to another user
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractDetailError'
          description: Action not found
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ContractDetailError:
      example:
        detail: Cluster not found
      properties:
        detail:
          oneOf:
            - type: string
            - additionalProperties: true
              properties: {}
              type: object
      required:
        - detail
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````