GET api/Auditors/{id}

Gets a particular auditor.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the auditor.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The auditor with the specified ID, or a 404 response if the auditor doesn't exist.

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
}