Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Validates that a service request belongs to the specified organization

Description

This method is used to validate that a service request belongs to the specified organization. If an irregularity is found, an exception is thrown.

Package Details

Interface

IServiceRequestManager

Syntax

ServiceRequestManager.ValidateByOrganization(int? serviceRequestId, int serviceId, int organizationId);

Returns

Task

API Endpoint

[POST] /api/v1/servicerequests

Parameters

  • serviceRequestId : The service id to verify.

  • organizationId : The organization id that should match the service id.

  • serviceId : Id of the service used to validate the requests.

Returns

200 - Ok

Example

using MTOA.BLL.Interfaces;

int myServiceRequestId = 12345
int myServiceId = 123;
int myOrganizationId = 123;

_serviceRequestManager.ValidateByOrganization(myServiceIdRequestId, myOrganizationId, myServiceId);
        

  • No labels