This endpoint requires authentication. Users can only view their own support requests.
Endpoint
Authentication
This endpoint requires a valid JWT token. Include the token in the Authorization header:Path Parameters
The unique identifier of the support request to retrieve
Response
Indicates whether the request was successful
A human-readable message describing the result
The response data object
Response Examples
Code Examples
Error Responses
401 Unauthorized
Returned when the request is made without a valid JWT token or the token has expired
404 Not Found
Returned when:
- The support request with the specified ID does not exist
- The support request belongs to a different user (ownership check)
Notes
- Users can only retrieve their own support requests
- If a user attempts to access another user’s support request, a 404 Not Found error is returned (not 403 Forbidden) for security reasons
- The endpoint uses Laravel’s route model binding for automatic model retrieval