Skip to main content
GET
/
commands
/
{command_id}
/
history
List Command Versions
curl --request GET \
  --url https://analyst.heyhumm.ai/commands/{command_id}/history \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "command_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "version": 123,
    "name": "<string>",
    "content": "<string>",
    "change_type": "created",
    "created_at": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "changed_by_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Documentation Index

Fetch the complete documentation index at: https://heyhumm.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

command_id
string<uuid>
required

Command ID

Query Parameters

organization_id
string
required

Response

Successful Response

id
string<uuid>
required
command_id
string<uuid>
required
version
integer
required
name
string
required
content
string
required
change_type
enum<string>
required

Type of change captured in command history.

Available options:
created,
updated,
generated,
restored
created_at
string<date-time>
required
description
string | null
changed_by_user_id
string<uuid> | null