GET api/PatientInsuranceUpdatesStates/search
Returns a list of states.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PatientInsuranceStateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Unique ID of state. |
globally unique identifier |
None. |
| CountryId |
Unique ID of the country of state. |
globally unique identifier |
None. |
| Code |
Code of state. |
string |
None. |
| Name |
Name of state. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "f5a57e01-8c3e-4198-a8ae-00e10e3f7795",
"CountryId": "ccf02cff-8c88-4bb9-be55-d40336e32acf",
"Code": "sample string 3",
"Name": "sample string 4"
},
{
"Id": "f5a57e01-8c3e-4198-a8ae-00e10e3f7795",
"CountryId": "ccf02cff-8c88-4bb9-be55-d40336e32acf",
"Code": "sample string 3",
"Name": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfPatientInsuranceStateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientInsurances">
<PatientInsuranceStateModel>
<Code>sample string 3</Code>
<CountryId>ccf02cff-8c88-4bb9-be55-d40336e32acf</CountryId>
<Id>f5a57e01-8c3e-4198-a8ae-00e10e3f7795</Id>
<Name>sample string 4</Name>
</PatientInsuranceStateModel>
<PatientInsuranceStateModel>
<Code>sample string 3</Code>
<CountryId>ccf02cff-8c88-4bb9-be55-d40336e32acf</CountryId>
<Id>f5a57e01-8c3e-4198-a8ae-00e10e3f7795</Id>
<Name>sample string 4</Name>
</PatientInsuranceStateModel>
</ArrayOfPatientInsuranceStateModel>