GET api/Addresses

Retrieves all addresses.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

All addresses.

Collection of Address
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

City

string

None.

PostalCode

string

None.

Street

string

None.

Email

string

None.

Phone

string

None.

Mobil

string

None.

CountrySymbol

string

None.

ErstellDat

date

None.

ErstellUs

string

None.

AendDat

date

None.

AendUs

string

None.

KundenNr

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 1",
    "City": "sample string 2",
    "PostalCode": "sample string 3",
    "Street": "sample string 4",
    "Email": "sample string 5",
    "Phone": "sample string 6",
    "Mobil": "sample string 7",
    "CountrySymbol": "sample string 8",
    "ErstellDat": "2026-04-07T13:22:02.0980115+02:00",
    "ErstellUs": "sample string 9",
    "AendDat": "2026-04-07T13:22:02.0980115+02:00",
    "AendUs": "sample string 10",
    "KundenNr": 11
  },
  {
    "Id": 1,
    "Name": "sample string 1",
    "City": "sample string 2",
    "PostalCode": "sample string 3",
    "Street": "sample string 4",
    "Email": "sample string 5",
    "Phone": "sample string 6",
    "Mobil": "sample string 7",
    "CountrySymbol": "sample string 8",
    "ErstellDat": "2026-04-07T13:22:02.0980115+02:00",
    "ErstellUs": "sample string 9",
    "AendDat": "2026-04-07T13:22:02.0980115+02:00",
    "AendUs": "sample string 10",
    "KundenNr": 11
  }
]

application/xml, text/xml

Sample:
<ArrayOfAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BestaendeWeb.Models">
  <Address>
    <AendDat>2026-04-07T13:22:02.0980115+02:00</AendDat>
    <AendUs>sample string 10</AendUs>
    <City>sample string 2</City>
    <CountrySymbol>sample string 8</CountrySymbol>
    <Email>sample string 5</Email>
    <ErstellDat>2026-04-07T13:22:02.0980115+02:00</ErstellDat>
    <ErstellUs>sample string 9</ErstellUs>
    <Id>1</Id>
    <KundenNr>11</KundenNr>
    <Mobil>sample string 7</Mobil>
    <Name>sample string 1</Name>
    <Phone>sample string 6</Phone>
    <PostalCode>sample string 3</PostalCode>
    <Street>sample string 4</Street>
  </Address>
  <Address>
    <AendDat>2026-04-07T13:22:02.0980115+02:00</AendDat>
    <AendUs>sample string 10</AendUs>
    <City>sample string 2</City>
    <CountrySymbol>sample string 8</CountrySymbol>
    <Email>sample string 5</Email>
    <ErstellDat>2026-04-07T13:22:02.0980115+02:00</ErstellDat>
    <ErstellUs>sample string 9</ErstellUs>
    <Id>1</Id>
    <KundenNr>11</KundenNr>
    <Mobil>sample string 7</Mobil>
    <Name>sample string 1</Name>
    <Phone>sample string 6</Phone>
    <PostalCode>sample string 3</PostalCode>
    <Street>sample string 4</Street>
  </Address>
</ArrayOfAddress>