assign_user_to_customer
Assign an organization member to a billing customer so they can see that customer and all its projects. Requires the org_user_id (discover it with get_project_team or get_employee_timesheet) and the customer_id. The organization is fixed by your context — never pass an organization id. You cannot target a user more privileged than yourself (Owner is not targetable by Admin).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_id | Yes | Id of the customer to assign the user to. | |
| org_user_id | Yes | Id of the OrganizationUser to assign (not the Firebase user id — use get_project_team to discover it). | |
| idempotency_key | No | Optional caller-supplied key; retrying with the same key returns the original result instead of acting twice. |