# Assign User to Organization Assign a mobile user to a specific organization. Links user account with organizational context and permissions. Endpoint: POST /user/assign-org Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `country_code` (string, required) Country code in E.164 format. Example: "+91" - `mobile` (string, required) Mobile number without country code. Example: "62839xxxxx" - `organization_code` (string, required) Unique organization identifier. Example: "Ivalt" ## Response 200 fields (application/json): - `status` (string, required) Indicates request success. Always success in this schema. Example: "success" - `message` (string, required) Short description of the successful operation outcome.. Example: "Operation completed successfully" ## Response 400 fields (application/json): - `status` (string, required) Indicates failure. Always error in this schema. Example: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Invalid request parameters"