Check Request Status
GET /client/check_request_status/{request_id}/
Use the GET /client/check_request_status/{request_id}/
endpoint to check if a mechanic has accepted a client's service request. Simply provide the unique request_id
to retrieve the current status of the request.
Parameters
Name
Type
In
Description
Required
request_id
string
path
The unique identifier for the service request.
Yes
Responses
200 OK
Description: The request status was successfully retrieved.
Example Response:
{
"request_id": "abc123",
"status": "Accepted",
"mechanic_id": "mech456",
"mechanic_name": "John Doe",
"message": "Your request has been accepted by the mechanic."
}
Last updated