GET api/Entities/Get

Requests all Entities for the Account sending the request

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Name": "sample string 2",
    "Type": 0,
    "Gender": 0,
    "BirthDate": "25/04/2024 01:07",
    "Account": 4
  },
  {
    "ID": 1,
    "Name": "sample string 2",
    "Type": 0,
    "Gender": 0,
    "BirthDate": "25/04/2024 01:07",
    "Account": 4
  },
  {
    "ID": 1,
    "Name": "sample string 2",
    "Type": 0,
    "Gender": 0,
    "BirthDate": "25/04/2024 01:07",
    "Account": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CapitalPlanner.Data.Models">
  <Entity>
    <Account>4</Account>
    <BirthDate>2024-04-25T01:07:32.346875+02:00</BirthDate>
    <Gender>Male</Gender>
    <ID>1</ID>
    <Name>sample string 2</Name>
    <Type>Person</Type>
  </Entity>
  <Entity>
    <Account>4</Account>
    <BirthDate>2024-04-25T01:07:32.346875+02:00</BirthDate>
    <Gender>Male</Gender>
    <ID>1</ID>
    <Name>sample string 2</Name>
    <Type>Person</Type>
  </Entity>
  <Entity>
    <Account>4</Account>
    <BirthDate>2024-04-25T01:07:32.346875+02:00</BirthDate>
    <Gender>Male</Gender>
    <ID>1</ID>
    <Name>sample string 2</Name>
    <Type>Person</Type>
  </Entity>
</ArrayOfEntity>