POST api/GetIssuingAuthority
Request Information
URI Parameters
None.
Body Parameters
Jsonparams| Name | Description | Type | Additional information |
|---|---|---|---|
| jsonstring | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"jsonstring": "sample string 1"
}
application/xml, text/xml
Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EmaalWebAPI.Models"> <jsonstring>sample string 1</jsonstring> </Jsonparams>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetIssuingAuthorityResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IssuingAuthority | Collection of IssuingAuthorityitems |
None. |
Response Formats
application/json, text/json
Sample:
{
"IssuingAuthority": [
{
"StateCode": "sample string 1",
"StateName": "sample string 2",
"IssuingAuthority": "sample string 3"
},
{
"StateCode": "sample string 1",
"StateName": "sample string 2",
"IssuingAuthority": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<GetIssuingAuthorityResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EmaalWebAPI.Models">
<IssuingAuthority>
<IssuingAuthorityitems>
<IssuingAuthority>sample string 3</IssuingAuthority>
<StateCode>sample string 1</StateCode>
<StateName>sample string 2</StateName>
</IssuingAuthorityitems>
<IssuingAuthorityitems>
<IssuingAuthority>sample string 3</IssuingAuthority>
<StateCode>sample string 1</StateCode>
<StateName>sample string 2</StateName>
</IssuingAuthorityitems>
</IssuingAuthority>
</GetIssuingAuthorityResult>