GET api/Entities/Get?id={id}
Returns a specific Entity
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | Unique identifier of the Entity |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"Type": 0,
"Gender": 0,
"BirthDate": "03/03/2026 01:17",
"Account": 4
}
application/xml, text/xml
Sample:
<Entity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CapitalPlanner.Data.Models"> <Account>4</Account> <BirthDate>2026-03-03T01:17:47.979625+01:00</BirthDate> <Gender>Male</Gender> <ID>1</ID> <Name>sample string 2</Name> <Type>Person</Type> </Entity>