Authorizations
API key passed in the header
Path Parameters
The ID of the task
Response
Task versions retrieved successfully
curl --request GET \
--url https://api.anchorbrowser.io/v1/task/{taskId}/versions \
--header 'anchor-api-key: <api-key>'
{
"data": {
"taskId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versions": [
{
"version": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
}
Retrieves all versions of a specific task, including draft and published versions.
curl --request GET \
--url https://api.anchorbrowser.io/v1/task/{taskId}/versions \
--header 'anchor-api-key: <api-key>'
{
"data": {
"taskId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versions": [
{
"version": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
}
API key passed in the header
The ID of the task
Task versions retrieved successfully
Show child attributes
Was this page helpful?