GET bbapi/lejer/HentHusleje?lejerStreng={lejerStreng}&dato={dato}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
lejerStreng | string |
Required |
|
dato | date |
Required |
Body Parameters
None.
Response Information
Resource Description
HuslejeResponseName | Description | Type | Additional information |
---|---|---|---|
Status | string |
None. |
|
Message | string |
None. |
|
data | Datas |
None. |
Response Formats
application/json, text/json
Sample:
{ "status": "sample string 1", "message": "sample string 2", "data": { "total": "sample string 1", "huslejeDetaljer": [ { "tekst": "sample string 1", "beløb": "sample string 2" }, { "tekst": "sample string 1", "beløb": "sample string 2" } ] } }
application/xml, text/xml
Sample:
<HuslejeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Domea.Dk.Models.BBAPI"> <Message>sample string 2</Message> <Status>sample string 1</Status> <data> <HuslejeDetaljer> <detaljer> <Beløb>sample string 2</Beløb> <Tekst>sample string 1</Tekst> </detaljer> <detaljer> <Beløb>sample string 2</Beløb> <Tekst>sample string 1</Tekst> </detaljer> </HuslejeDetaljer> <Total>sample string 1</Total> </data> </HuslejeResponse>