Update custom field
documentedUpdate a custom field.
PUT /custom_fields/{id}Custom Fieldsno implementation yet0 runsNo 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/custom_fields/{{$id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{\"value\": \"{{$value}}\", \"custom_field_type_id\": {{$custom_field_type_id}}, \"item_type\": \"{{$item_type}}\", \"item_id\": {{$item_id}} }'