# Get login URL Retrieves login URL using authentication token and user details. Endpoint: POST /api/v1/login/url Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `auth_token` (string, required) Auth token of post /api/v1/login/url request. - `success_url` (string, required) Success url of post /api/v1/login/url request. - `cancel_url` (string, required) Cancel url of post /api/v1/login/url request. - `user_mobile` (string, required) User mobile of post /api/v1/login/url request. ## Response 200 fields (application/json): - `status` (string, required) Outcome of the request. Always success for 2xx responses. Enum: "success" - `message` (string, required) Short description of the successful operation outcome. Example: "Operation completed successfully" ## Response 400 fields (application/json): - `status` (string, required) Outcome of the request. Always error for 4xx/5xx responses. Enum: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Bad request - missing or invalid data"