GET api/AccountTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Tb_Account_Types
NameDescriptionTypeAdditional information
RecordID

integer

None.

TypeID

integer

None.

Typedescription

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecordID": 1,
    "TypeID": 1,
    "Typedescription": "sample string 2"
  },
  {
    "RecordID": 1,
    "TypeID": 1,
    "Typedescription": "sample string 2"
  }
]

text/html

Sample:
[{"RecordID":1,"TypeID":1,"Typedescription":"sample string 2"},{"RecordID":1,"TypeID":1,"Typedescription":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfTb_Account_Types xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYexpencesAPI.Models">
  <Tb_Account_Types>
    <RecordID>1</RecordID>
    <TypeID>1</TypeID>
    <Typedescription>sample string 2</Typedescription>
  </Tb_Account_Types>
  <Tb_Account_Types>
    <RecordID>1</RecordID>
    <TypeID>1</TypeID>
    <Typedescription>sample string 2</Typedescription>
  </Tb_Account_Types>
</ArrayOfTb_Account_Types>