Retrieve the Requester Details information associated with a given Service Request Id.
Description
This API requires the Service Request to be associated with a RequesterId
Package Details
Interface
IAddressManager
Syntax
IAddressManager.GetRequesterDetails(int serviceRequestId);
API
[GET] /api/v1/servicerequests/{id}/requester-details
Parameter
...
id: Service Request Id to retrieve the Requester Details for
Returns
200 OK - Requester Details information
Example
Code Block | ||
---|---|---|
| ||
int id |
...
= 7919var requester; Details = await _serviceRequestManager.GetRequesterDetails(id); |