GET api/providerAddresses
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of providerAddress| Name | Description | Type | Additional information |
|---|---|---|---|
| providerId | integer |
None. |
|
| country | string |
None. |
|
| city | string |
None. |
|
| street | string |
None. |
|
| number | string |
None. |
|
| zip | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"providerId": 1,
"country": "sample string 2",
"city": "sample string 3",
"street": "sample string 4",
"number": "sample string 5",
"zip": 1
},
{
"providerId": 1,
"country": "sample string 2",
"city": "sample string 3",
"street": "sample string 4",
"number": "sample string 5",
"zip": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfproviderAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mustCnoAuth">
<providerAddress>
<city>sample string 3</city>
<country>sample string 2</country>
<number>sample string 5</number>
<providerId>1</providerId>
<street>sample string 4</street>
<zip>1</zip>
</providerAddress>
<providerAddress>
<city>sample string 3</city>
<country>sample string 2</country>
<number>sample string 5</number>
<providerId>1</providerId>
<street>sample string 4</street>
<zip>1</zip>
</providerAddress>
</ArrayOfproviderAddress>