GET api/Auditors

Gets all auditors.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of auditors.

Collection of Auditor
NameDescriptionTypeAdditional information
ID

The ID of the record.

integer

None.

Initials

The initials of the auditor.

string

None.

FirstName

The first name of the auditor.

string

None.

MiddleInitial

The middle initial of the auditor.

string

None.

LastName

The last name of the auditor.

string

None.

IsActive

Whether or not the auditor is still active.

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Initials": "sample string 2",
    "FirstName": "sample string 3",
    "MiddleInitial": "sample string 4",
    "LastName": "sample string 5",
    "IsActive": true
  },
  {
    "ID": 1,
    "Initials": "sample string 2",
    "FirstName": "sample string 3",
    "MiddleInitial": "sample string 4",
    "LastName": "sample string 5",
    "IsActive": true
  }
]