GET api/userGroups/userGroup/{userGroupId}/getTutors

Search group tutors.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userGroupId

A user group id.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of User
NameDescriptionTypeAdditional information
UserId

User Id.

integer

None.

OrgId

Orginisation Id.

integer

None.

Username

Username.

string

None.

Firstname

Firstname.

string

None.

Lastname

Lastname.

string

None.

IsArchived

If user archived or active.

boolean

None.

Email

Email address.

string

None.

DateOfBirth

Date of birth.

date

None.

ProfilePhotoUrl

Profile photo temporary url.

string

None.

DateCreated

Date user was created on.

date

None.

LastActivity

Last user activity.

date

None.

IsStaff

If user is a staff member.

boolean

None.

AdvancedID

ASSO ID.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UserId": 1,
    "OrgId": 2,
    "Username": "sample string 3",
    "Firstname": "sample string 4",
    "Lastname": "sample string 5",
    "IsArchived": true,
    "Email": "sample string 7",
    "DateOfBirth": "2024-09-21T02:49:14.866062+00:00",
    "ProfilePhotoUrl": "sample string 9",
    "DateCreated": "2024-09-21T02:49:14.866062+00:00",
    "LastActivity": "2024-09-21T02:49:14.866062+00:00",
    "IsStaff": true,
    "AdvancedID": "sample string 13"
  },
  {
    "UserId": 1,
    "OrgId": 2,
    "Username": "sample string 3",
    "Firstname": "sample string 4",
    "Lastname": "sample string 5",
    "IsArchived": true,
    "Email": "sample string 7",
    "DateOfBirth": "2024-09-21T02:49:14.866062+00:00",
    "ProfilePhotoUrl": "sample string 9",
    "DateCreated": "2024-09-21T02:49:14.866062+00:00",
    "LastActivity": "2024-09-21T02:49:14.866062+00:00",
    "IsStaff": true,
    "AdvancedID": "sample string 13"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUser xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <User>
    <UserId>1</UserId>
    <OrgId>2</OrgId>
    <Username>sample string 3</Username>
    <Firstname>sample string 4</Firstname>
    <Lastname>sample string 5</Lastname>
    <IsArchived>true</IsArchived>
    <Email>sample string 7</Email>
    <DateOfBirth>2024-09-21T02:49:14.866062+00:00</DateOfBirth>
    <ProfilePhotoUrl>sample string 9</ProfilePhotoUrl>
    <DateCreated>2024-09-21T02:49:14.866062+00:00</DateCreated>
    <LastActivity>2024-09-21T02:49:14.866062+00:00</LastActivity>
    <IsStaff>true</IsStaff>
    <AdvancedID>sample string 13</AdvancedID>
  </User>
  <User>
    <UserId>1</UserId>
    <OrgId>2</OrgId>
    <Username>sample string 3</Username>
    <Firstname>sample string 4</Firstname>
    <Lastname>sample string 5</Lastname>
    <IsArchived>true</IsArchived>
    <Email>sample string 7</Email>
    <DateOfBirth>2024-09-21T02:49:14.866062+00:00</DateOfBirth>
    <ProfilePhotoUrl>sample string 9</ProfilePhotoUrl>
    <DateCreated>2024-09-21T02:49:14.866062+00:00</DateCreated>
    <LastActivity>2024-09-21T02:49:14.866062+00:00</LastActivity>
    <IsStaff>true</IsStaff>
    <AdvancedID>sample string 13</AdvancedID>
  </User>
</ArrayOfUser>