GET api/Settings

Gets the settings of the current user.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Account": 2,
  "Inflation": 3.0,
  "Indexation": 4.0,
  "Debit": 5.0,
  "Credit": 6.0,
  "FinishDate": "20/04/2024 03:54"
}

application/xml, text/xml

Sample:
<Settings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CapitalPlanner.Data.Models">
  <Account>2</Account>
  <Credit>6</Credit>
  <Debit>5</Debit>
  <FinishDate>2024-04-20T03:54:46.6175+02:00</FinishDate>
  <ID>1</ID>
  <Indexation>4</Indexation>
  <Inflation>3</Inflation>
</Settings>