reorder_user_field_schema
Reposition user table columns by moving a field to the start, end, before, or after another field using exact field keys from the schema.
Instructions
Reorder displayed user table columns in the user field schema. Use this when the operator asks to move a column left, right, first, last, before another field, or after another field. The field and target values must be exact field keys from get_user_field_schema, such as id, fullname, email, lastaccess, department, institution, or suspended. Natural language examples: 'move last access all the way to the right' → {"field":"lastaccess","position":"end"}. 'move department after email' → {"field":"department","after":"email"}. 'put suspended before lastaccess' → {"field":"suspended","before":"lastaccess"}. 'move full name to the far left' → {"field":"fullname","position":"start"}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | Move the field immediately after this displayed field key | |
| field | Yes | Field key to move, e.g. lastaccess, department, email, or suspended | |
| before | No | Move the field immediately before this displayed field key | |
| position | No | Move the field to the far left/start or far right/end of displayed columns |