GET api/providers
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of provider| Name | Description | Type | Additional information |
|---|---|---|---|
| providerId | integer |
None. |
|
| string |
None. |
||
| phone | string |
None. |
|
| contactName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"providerId": 1,
"email": "sample string 2",
"phone": "sample string 3",
"contactName": "sample string 4"
},
{
"providerId": 1,
"email": "sample string 2",
"phone": "sample string 3",
"contactName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfprovider xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mustCnoAuth">
<provider>
<contactName>sample string 4</contactName>
<email>sample string 2</email>
<phone>sample string 3</phone>
<providerId>1</providerId>
</provider>
<provider>
<contactName>sample string 4</contactName>
<email>sample string 2</email>
<phone>sample string 3</phone>
<providerId>1</providerId>
</provider>
</ArrayOfprovider>