GET api/Addresses/{id}

Retrieves all customers of a group by the give groupId.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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:25:12.4616972+02:00",
  "ErstellUs": "sample string 9",
  "AendDat": "2026-04-07T13:25:12.4616972+02:00",
  "AendUs": "sample string 10",
  "KundenNr": 11
}

application/xml, text/xml

Sample:
<Address xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BestaendeWeb.Models">
  <AendDat>2026-04-07T13:25:12.4616972+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:25:12.4616972+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>