description: "ALWAYS USE THIS SKILL to assign permission sets to org users. Assign one or more permission sets to org users using the sf org assign permset command. TRIGGER when the user asks to assign, grant, give, add, or apply permission sets to users, admins, specific orgs, or specific users. Supports granting permissions, giving access, and adding permission sets to default admin or specific users via --on-behalf-of. DO NOT TRIGGER for listing permission sets or checking user permissions."
compatibility: Salesforce CLI (sf) v2+
metadata:
version: "1.0"
---
# dx-org-permission-set-assign
Assigns one or more permission sets to org users using `sf org assign permset`. Handles all variants: default admin user, specific org targets, multiple permission sets, and assignment to specific users.
| Always use `--json` flag | Provides structured output for reliable parsing and error handling |
| Permission set names are case-sensitive | Use exact API names as they appear in the org |
| Multiple `--name` flags can be combined in one command | More efficient than separate commands per permission set |
| Multiple `--on-behalf-of` flags assign to multiple users | Batch assignment in single command; processed sequentially to avoid auth file collisions |
| Use CLI username aliases, not Salesforce User.Alias field | The `--target-org` and `--on-behalf-of` flags expect CLI aliases set via `sf alias set`, not the User object's Alias field |
| Duplicate assignments are idempotent | Re-assigning an already-assigned permission set succeeds silently |
| Partial success is possible | Command can return both successes and failures in one run; non-zero exit code if any failures |
---
## Gotchas
| Issue | Resolution |
|-------|------------|
| Permission set name with spaces | Enclose in double quotes: `--name "Permission Set Name"` |
| "PermissionSet not found" error | Verify permission set exists in target org; check for typos in name |
| Assignment succeeds but user doesn't see permissions | Check `<hasActivationRequired>` in permission set metadata — may need manual activation in Setup |
| "User not found" error | Username/alias doesn't exist in target org — verify with `sf org display user --target-org <alias>` |
| Partial success (some users succeed, others fail) | Check JSON output — command returns both `successes` and `failures` arrays; exit code will be non-zero if any failures occurred |
---
## Output Expectations
The command returns JSON output with status code and result details.
See `examples/success_output.json` and `examples/error_output.json` for response structures.
---
## Reference File Index
| File | When to read |
|------|-------------|
| `examples/success_output.json` | To understand successful assignment response structure |
| `examples/error_output.json` | To handle common error scenarios |
| `references/cli_flags.md` | For detailed explanation of all available flags |