Skip to main content
Provide feedback on tasks in an Employee's Task Profile
curl --request PATCH \
  --url https://{tenant_name}.{region}.techwolf.ai/employees/{employee_external_id}/task_profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tasks": [
    {
      "task_id": "write-unit-tests",
      "has_task": true
    },
    {
      "task_id": "schedule-meetings",
      "has_task": false
    }
  ],
  "source": "workday"
}
'
[
  {
    "title": "400 Bad Request",
    "description": "The request body was not structured correctly."
  }
]

Documentation Index

Fetch the complete documentation index at: https://developers.techwolf.ai/llms.txt

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

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

employee_external_id
string
required

The external identifier of the Employee.

Body

application/json
tasks
object[]
required

List of task feedback items.

source
string

Optional identifier of the source of this feedback.

Example:

"workday"

Response

No Content