# Enrollment Status Check the enrollment status of a mobile user. Returns current enrollment state and any pending requirements. Endpoint: POST /enrolstatus Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `mobile` (string, required) Mobile number to check enrollment status for. Example: "62839xxxxx" ## Response 200 fields (application/json): - `status` (string, required) Outcome of the request. Example: "success" - `message` (string, required) Summary of the result. Example: "Enrollment status" - `data` (object, required) - `data.enrolled` (boolean) Example: true - `data.enrollment_date` (string) Example: "2024-01-15" - `data.status` (string) Example: "completed" ## 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"