GET audit/getAuditTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AuditType
NameDescriptionTypeAdditional information
AuditTypeId

integer

None.

Type

string

None.

Active

boolean

None.

TenantId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AuditTypeId": 1,
    "Type": "sample string 2",
    "Active": true,
    "TenantId": 4
  },
  {
    "AuditTypeId": 1,
    "Type": "sample string 2",
    "Active": true,
    "TenantId": 4
  }
]

text/html

Sample:
[{"AuditTypeId":1,"Type":"sample string 2","Active":true,"TenantId":4},{"AuditTypeId":1,"Type":"sample string 2","Active":true,"TenantId":4}]

application/xml, text/xml

Sample:
<ArrayOfAuditType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.Audit">
  <AuditType>
    <Active>true</Active>
    <AuditTypeId>1</AuditTypeId>
    <TenantId>4</TenantId>
    <Type>sample string 2</Type>
  </AuditType>
  <AuditType>
    <Active>true</Active>
    <AuditTypeId>1</AuditTypeId>
    <TenantId>4</TenantId>
    <Type>sample string 2</Type>
  </AuditType>
</ArrayOfAuditType>