GET v1/api/provider/listProviderTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
listProviderTypesResultName | Description | Type | Additional information |
---|---|---|---|
success | boolean |
None. |
|
errorMsg | string |
None. |
|
providerType | Collection of providerTypes |
None. |
Response Formats
application/json, text/json
Sample:
{ "success": true, "errorMsg": "sample string 2", "providerType": [ { "typeCode": "sample string 1", "providerTypeName": "sample string 2" }, { "typeCode": "sample string 1", "providerTypeName": "sample string 2" } ] }
application/xml, text/xml
Sample:
<listProviderTypesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.api_Main.listProviderTypes"> <errorMsg>sample string 2</errorMsg> <providerType xmlns:d2p1="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.listProviders"> <d2p1:listProvidersResult.providerTypes> <d2p1:providerTypeName>sample string 2</d2p1:providerTypeName> <d2p1:typeCode>sample string 1</d2p1:typeCode> </d2p1:listProvidersResult.providerTypes> <d2p1:listProvidersResult.providerTypes> <d2p1:providerTypeName>sample string 2</d2p1:providerTypeName> <d2p1:typeCode>sample string 1</d2p1:typeCode> </d2p1:listProvidersResult.providerTypes> </providerType> <success>true</success> </listProviderTypesResult>
text/html
Sample:
{"success":true,"errorMsg":"sample string 2","providerType":[{"typeCode":"sample string 1","providerTypeName":"sample string 2"},{"typeCode":"sample string 1","providerTypeName":"sample string 2"}]}