GET api/applicant/CheckServiceAvailable?ServiceCode={ServiceCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ServiceCode

string

Required

Body Parameters

None.

Response Information

Resource Description

ServiceResponse
NameDescriptionTypeAdditional information
IsAvailable

boolean

None.

StatusCode

integer

None.

Ref

string

None.

MessageAr

string

None.

MessageEn

string

None.

InternalMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsAvailable": true,
  "StatusCode": 2,
  "Ref": "sample string 3",
  "MessageAr": "sample string 4",
  "MessageEn": "sample string 5",
  "InternalMessage": "sample string 6"
}

application/xml, text/xml

Sample:
<ServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDF.APIs.Models">
  <InternalMessage>sample string 6</InternalMessage>
  <IsAvailable>true</IsAvailable>
  <MessageAr>sample string 4</MessageAr>
  <MessageEn>sample string 5</MessageEn>
  <Ref>sample string 3</Ref>
  <StatusCode>2</StatusCode>
</ServiceResponse>