GET v1/CatiInterviewers

User roles allowed to make this request: DomainAdministrator PowerUser RegularUser Supervisor LimitedUser DemoUser

Permissions required to make this request: CatiInterviewer.Read

This method retrieve a list of interviewers. This list can be filtered and sorted using standard OData syntax.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A (filtered) list of interviewers

Response Message

Collection of CatiInterviewer
NameDescriptionTypeAdditional information
InterviewerId

The unique id of the user

string

None.

UserName

The interviewer's username

string

Required

Max length: 50

FirstName

First name of the interviewer

string

Max length: 50

LastName

Last name of the interviewer

string

Max length: 50

EmailAddress

Email address of the interviewer

string

Max length: 50

TelephoneNumber

Telephone number of the interviewer

string

Max length: 30

LastPasswordChangeTime

Time the password was last changed

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InterviewerId": "sample string 1",
    "UserName": "sample string 2",
    "FirstName": "sample string 3",
    "LastName": "sample string 4",
    "EmailAddress": "sample string 5",
    "TelephoneNumber": "sample string 6",
    "LastPasswordChangeTime": "2024-05-20T17:05:30.8924506+00:00"
  },
  {
    "InterviewerId": "sample string 1",
    "UserName": "sample string 2",
    "FirstName": "sample string 3",
    "LastName": "sample string 4",
    "EmailAddress": "sample string 5",
    "TelephoneNumber": "sample string 6",
    "LastPasswordChangeTime": "2024-05-20T17:05:30.8924506+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCatiInterviewer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models">
  <CatiInterviewer>
    <EmailAddress>sample string 5</EmailAddress>
    <FirstName>sample string 3</FirstName>
    <InterviewerId>sample string 1</InterviewerId>
    <LastName>sample string 4</LastName>
    <LastPasswordChangeTime>2024-05-20T17:05:30.8924506+00:00</LastPasswordChangeTime>
    <TelephoneNumber>sample string 6</TelephoneNumber>
    <UserName>sample string 2</UserName>
  </CatiInterviewer>
  <CatiInterviewer>
    <EmailAddress>sample string 5</EmailAddress>
    <FirstName>sample string 3</FirstName>
    <InterviewerId>sample string 1</InterviewerId>
    <LastName>sample string 4</LastName>
    <LastPasswordChangeTime>2024-05-20T17:05:30.8924506+00:00</LastPasswordChangeTime>
    <TelephoneNumber>sample string 6</TelephoneNumber>
    <UserName>sample string 2</UserName>
  </CatiInterviewer>
</ArrayOfCatiInterviewer>