Sign in

Patch user

documented

Partially update a user.

PATCH /Users/{id}SCIMno 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://app.asana.com/api/1.0/scim/Users/{{$user_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{ASANA_SERVICE_ACCOUNT_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"], "Operations": [ { "op": "replace", "value": { "title": "{{$title}}" } } ] }'