Remove() [ServiceRequestManager]

Removes service requests filtered by service id

Description

This method is used to remove service requests that are filtered by service request ID and user ID.

Package Details

Interface

IServiceRequestManager

Syntax

ServiceRequestManager.Remove(int serviceRequestId, int userId);

Returns

Task

API Endpoint

[GET] /api/v1/users/{id}/servicerequests

Parameter

Description

Type

Parameter

Description

Type

id

the id of the service request

int

userId

the id of the user removing the service request

int

Returns

200 - Ok

Example

using MTOA.BLL.Interfaces; int myServiceRequestId = 123; var serviceRequests = await _serviceRequestManager.Remove(myServiceRequestId, CurrentUser.Id);