cURL
curl --request PUT \ --url https://api.anchorbrowser.io/v1/task/{taskId} \ --header 'Content-Type: application/json' \ --header 'anchor-api-key: <api-key>' \ --data ' { "name": "<string>", "description": "<string>" } '
{ "data": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "latest": "<string>", "deleted": true, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "description": "<string>" } }
Updates task metadata (name and description). This does not affect the task code or versions.
API key passed in the header
The ID of the task to update
Task name (letters, numbers, hyphens, and underscores only)
1 - 255
Optional description of the task
1000
Task metadata updated successfully
Show child attributes
Unique identifier for the task
Task name
Team identifier that owns this task
Latest version identifier
Whether the task is soft deleted
Task creation timestamp
Task last update timestamp
Was this page helpful?