For the complete documentation index, see llms.txt. This page is also available as Markdown.

get_task_history

imerit_ango.sdk.SDK.

get_task_history(task_history_id, task_id)

Get the stage history of a task.

Parameters

  • task_history_id: string, optional, default None

    • The unique identifier of the task history item.

    • Example: '0000000aa0a00a0000aaaa0a'

  • task_id: string, optional, default None

    • The unique identifier of the task whose history will be retrieved. Task IDs can be obtained from the UI, and from the get_tasks function.

    • Example: '0000000aa0a00a0000aaaa0a'

Either task_history_id or task_id must be provided when calling the get_task_history function.

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

    • Including a status field indicating whether the request was successful and a data field containing the response payload with updated resources produced by the operation.

Example

Get the task history of a specific task.

Sample Output

See also

get_task

Last updated