AI agent? Read this page as Markdown at /genai/task/List_all_tasks.md — append .md to any docs URL, or start from /llms.txt.

List all tasks

GET/genai/{connection_id}/task

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
status enum
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection

Returns

idstring
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
A short human-readable title for the coding agent task.
instructionsstring
The natural-language instructions given to the coding agent.
status enum
Valid values:
"PENDING"
"RUNNING"
"BLOCKED"
"COMPLETED"
"FAILED"
model_idstring
user_idstring
(reference to HrisEmployee)
repo_urlstring
The git repository that the coding agent works in.
source_branch_identifierstring
The name of the branch that the coding agent starts its work from.
target_branch_identifierstring
The name of the branch that the coding agent pushed its work to.
pullrequest_urlstring
The pull/merge request that the coding agent opened for its work.
web_urlstring
The provider's own web page for this task.
messages array
The conversation between the user and the coding agent.
summarystring
The coding agent's summary of the work that it performed.
errorstring
The failure description (when the status is FAILED).
files_changednumber
lines_addednumber
lines_deletednumber
tokens_usednumber
started_atdate
When the coding agent started working on the task. (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
completed_atdate
When the coding agent stopped working on the task. (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
agent_idstring
id of the genai_agent (the reusable agent/preset configuration) that runs this task.
organization_idstring
id of the genai_organization (the organization or execution environment) that this task runs under.
const options = {
  method: 'GET',
  url: 'https://api.unified.to/genai/5de520f96e439b002043d8dc/task',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-09-20T15:23:23.921Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    status: '',
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?