GET api/AddOn/ActiveList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AddOn
NameDescriptionTypeAdditional information
Name

string

None.

Description

string

None.

IsActive

boolean

None.

AmountToCharge

decimal number

None.

Accounts

Collection of Account

None.

CreatedOn

date

None.

CreatedBy

string

None.

UpdatedOn

date

None.

UpdatedBy

string

None.

IsLockedForEditing

boolean

None.

LockedBy

string

None.

Id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "IsActive": true,
    "AmountToCharge": 4.0
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "IsActive": true,
    "AmountToCharge": 4.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfAddOn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAWinProV4.Model.DTO.Common">
  <AddOn>
    <AmountToCharge>4</AmountToCharge>
    <Description>sample string 2</Description>
    <IsActive>true</IsActive>
    <Name>sample string 1</Name>
  </AddOn>
  <AddOn>
    <AmountToCharge>4</AmountToCharge>
    <Description>sample string 2</Description>
    <IsActive>true</IsActive>
    <Name>sample string 1</Name>
  </AddOn>
</ArrayOfAddOn>