Sign in

Update project right

documented

Update a project right by ID.

PUT /project_rights/{id}Project Rightsno 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/project_rights/{{$id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"user_id": "{{$user_id}}", "level": "{{$level}}", "role": "{{$role}}", "permissions": {"read": {{$read}}, "write": {{$write}}, "admin": {{$admin}}}}'