action ix_api_role_assignments_destroy { label: "role_assignments_destroy" description: "Remove a role assignment from a contact.\n\nIf the contact is still in use with a given role required,\nthis will yield an `UnableToFulfill` error." provider: ix_api method: DELETE path: "/role-assignments/{assignment_id}" encoding: json input: { type: "object" properties: { assignment_id: { type: "string" } } required: ["assignment_id"] additionalProperties: false } output: { type: "object" } }