GET bbapi/lejer/HentForbrugsIndex?lejerStreng={lejerStreng}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
lejerStreng

string

Required

Body Parameters

None.

Response Information

Resource Description

ForbrugsIndexResponse
NameDescriptionTypeAdditional information
Status

string

None.

Message

string

None.

data

Collection of ForbrugsIndex

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "data": [
    {
      "harDokumenter": true,
      "harHusleje": true,
      "harVaskeforbrug": true,
      "harVedligeholdskonto": true,
      "harForbrugsregnskab": true
    },
    {
      "harDokumenter": true,
      "harHusleje": true,
      "harVaskeforbrug": true,
      "harVedligeholdskonto": true,
      "harForbrugsregnskab": true
    }
  ]
}

application/xml, text/xml

Sample:
<ForbrugsIndexResponse 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>
    <ForbrugsIndex>
      <HarDokumenter>true</HarDokumenter>
      <HarForbrugsregnskab>true</HarForbrugsregnskab>
      <HarHusleje>true</HarHusleje>
      <HarVaskeforbrug>true</HarVaskeforbrug>
      <HarVedligeholdskonto>true</HarVedligeholdskonto>
    </ForbrugsIndex>
    <ForbrugsIndex>
      <HarDokumenter>true</HarDokumenter>
      <HarForbrugsregnskab>true</HarForbrugsregnskab>
      <HarHusleje>true</HarHusleje>
      <HarVaskeforbrug>true</HarVaskeforbrug>
      <HarVedligeholdskonto>true</HarVedligeholdskonto>
    </ForbrugsIndex>
  </data>
</ForbrugsIndexResponse>