GET GetServiceAuthorization?Username={Username}&Password={Password}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| Username | string | Required | |
| Password | string | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of ServiceAuthorization| Name | Description | Type | Additional information | 
|---|---|---|---|
| Service | string | None. | |
| IsActive | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Service": "sample string 1",
    "IsActive": true
  },
  {
    "Service": "sample string 1",
    "IsActive": true
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfServiceAuthorization xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aathifrupay.Api.Models">
  <ServiceAuthorization>
    <IsActive>true</IsActive>
    <Service>sample string 1</Service>
  </ServiceAuthorization>
  <ServiceAuthorization>
    <IsActive>true</IsActive>
    <Service>sample string 1</Service>
  </ServiceAuthorization>
</ArrayOfServiceAuthorization>