# Refresh Mobile Token Refresh the authentication token for a mobile user. Used to maintain session validity and security. Endpoint: POST /wp/mobile/refresh/token Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `imei` (string, required) Device IMEI or unique device identifier. Example: "ED9F012A-3991-4BF5-83EB-685F56FA57B7" - `mobile` (string, required) Mobile number without country code. Example: "62839xxxxx" - `token` (string, required) Current authentication token to be refreshed. Example: "4590-C4864D900D98-75" ## 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"