Retrieve Survey Details
GET /calls/surveys/{survey_id}/
Use the GET /calls/surveys/{survey_id}/
endpoint to retrieve the details of a specific survey associated with a call. The survey_id
must be provided to fetch the corresponding survey data.
Path Parameters:
Field
Type
Required
Description
survey_id
string
Yes
The unique identifier of the survey.
Example Request:
curl -X GET "https://requestnowmechanic.com/v1/calls/surveys/{survey_id}/" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Successful Response:
Status Code:
200 OK
Description: Survey details retrieved successfully.
Response Body Example:
{ "id": "123e4567-e89b-12d3-a456-426614174000", "disappointment_level": "not", "disappointment_reason": "Long response time", "problem_solved": true, "responded_immediately": true, "is_carried_along": false, "was_asked_before_maintenance": true, "had_effective_communication": true, "kept_appointment": true, "met_at_location": true, "met_at_shop": false, "auto_technician_rating": 8, "auto_technician_feedback": "Great job overall.", "customer_support_experience": "Very helpful.", "overall_experience_rating": 9, "overall_feedback": "Excellent service!", "refer_to_friend": true, "created_at": "2024-11-12T10:30:00Z", "updated_at": "2024-11-12T11:00:00Z", "user": "user_12345", "call": 98765 }
Last updated