GET api/adjustedcodetypes

GET: api/AdjustedCodeTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AdjustedCodeTypeViewModel
NameDescriptionTypeAdditional information
AdjustedCodeTypeId

integer

None.

Description

string

None.

DefaultDescription

string

None.

Required

integer

None.

Displayed

integer

None.

Code

string

None.

GLAccountId

integer

None.

GLSubAccountId

integer

None.

GLAccount

string

None.

GLSubAccount

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "adjustedCodeTypeId": 1,
    "description": "sample string 2",
    "defaultDescription": "sample string 3",
    "required": 4,
    "displayed": 5,
    "code": "sample string 6",
    "glAccountId": 1,
    "glSubAccountId": 1,
    "glAccount": "sample string 7",
    "glSubAccount": "sample string 8"
  },
  {
    "adjustedCodeTypeId": 1,
    "description": "sample string 2",
    "defaultDescription": "sample string 3",
    "required": 4,
    "displayed": 5,
    "code": "sample string 6",
    "glAccountId": 1,
    "glSubAccountId": 1,
    "glAccount": "sample string 7",
    "glSubAccount": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAdjustedCodeTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.AdjustedCodeType">
  <AdjustedCodeTypeViewModel>
    <AdjustedCodeTypeId>1</AdjustedCodeTypeId>
    <Code>sample string 6</Code>
    <DefaultDescription>sample string 3</DefaultDescription>
    <Description>sample string 2</Description>
    <Displayed>5</Displayed>
    <GLAccount>sample string 7</GLAccount>
    <GLAccountId>1</GLAccountId>
    <GLSubAccount>sample string 8</GLSubAccount>
    <GLSubAccountId>1</GLSubAccountId>
    <Required>4</Required>
  </AdjustedCodeTypeViewModel>
  <AdjustedCodeTypeViewModel>
    <AdjustedCodeTypeId>1</AdjustedCodeTypeId>
    <Code>sample string 6</Code>
    <DefaultDescription>sample string 3</DefaultDescription>
    <Description>sample string 2</Description>
    <Displayed>5</Displayed>
    <GLAccount>sample string 7</GLAccount>
    <GLAccountId>1</GLAccountId>
    <GLSubAccount>sample string 8</GLSubAccount>
    <GLSubAccountId>1</GLSubAccountId>
    <Required>4</Required>
  </AdjustedCodeTypeViewModel>
</ArrayOfAdjustedCodeTypeViewModel>