Sign in

Create task custom field

documented

Create a custom field for a task.

POST /tasks/{task_id}/custom_fieldsCustom Fieldsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://www.meistertask.com/api/tasks/{{$task_id}}/custom_fields" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"custom_fields": [{"id": {{$custom_field_id}}, "value": "{{$value}}"}]}'