POST api/v2.0/Mentoring/GetStats

Returns aggregate MentorMatch program participation statistics. Can only be accessed by an Admin user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Aggregate counts and percentages for active profiles, pending requesters (active mentors/mentees only) and total requesters (all-time), matched/unmatched participants, and multiple mentorships.

MentoringStatsResponse
NameDescriptionTypeAdditional information
ActiveMentorProfiles

Number of active mentor profiles.

integer

None.

ActiveMenteeProfiles

Number of active mentee profiles.

integer

None.

PendingMentorRequesters

Number of distinct active mentees currently awaiting a response to a pending request they sent to an active mentor.

integer

None.

PendingMenteeRequesters

Number of distinct active mentors currently awaiting a response to a pending request they sent to an active mentee.

integer

None.

TotalMentorRequesters

Number of distinct mentees who have ever sent a request to a mentor.

integer

None.

TotalMenteeRequesters

Number of distinct mentors who have ever sent a request to a mentee.

integer

None.

MatchedMentors

Number of distinct active mentor profiles currently in an active mentorship.

integer

None.

UnmatchedMentors

Number of distinct active mentor profiles not currently in an active mentorship.

integer

None.

MatchedMentees

Number of distinct active mentee profiles currently in an active mentorship.

integer

None.

UnmatchedMentees

Number of distinct active mentee profiles not currently in an active mentorship.

integer

None.

DualRoleParticipants

Number of participants with both an active mentor profile and an active mentee profile.

integer

None.

MatchedMentorPercentage

Percentage of active mentors who are currently matched (0-100).

decimal number

None.

UnmatchedMentorPercentage

Percentage of active mentors who are currently unmatched (0-100).

decimal number

None.

MatchedMenteePercentage

Percentage of active mentees who are currently matched (0-100).

decimal number

None.

UnmatchedMenteePercentage

Percentage of active mentees who are currently unmatched (0-100).

decimal number

None.

MultipleMentorshipsPercentage

Percentage of participants with more than one mentorship, current or past (0-100).

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "ActiveMentorProfiles": 1,
  "ActiveMenteeProfiles": 2,
  "PendingMentorRequesters": 3,
  "PendingMenteeRequesters": 4,
  "TotalMentorRequesters": 5,
  "TotalMenteeRequesters": 6,
  "MatchedMentors": 7,
  "UnmatchedMentors": 8,
  "MatchedMentees": 9,
  "UnmatchedMentees": 10,
  "DualRoleParticipants": 11,
  "MatchedMentorPercentage": 12.0,
  "UnmatchedMentorPercentage": 13.0,
  "MatchedMenteePercentage": 14.0,
  "UnmatchedMenteePercentage": 15.0,
  "MultipleMentorshipsPercentage": 16.0
}

application/xml, text/xml

Sample:
<MentoringStatsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Mentoring">
  <ActiveMenteeProfiles>2</ActiveMenteeProfiles>
  <ActiveMentorProfiles>1</ActiveMentorProfiles>
  <DualRoleParticipants>11</DualRoleParticipants>
  <MatchedMenteePercentage>14</MatchedMenteePercentage>
  <MatchedMentees>9</MatchedMentees>
  <MatchedMentorPercentage>12</MatchedMentorPercentage>
  <MatchedMentors>7</MatchedMentors>
  <MultipleMentorshipsPercentage>16</MultipleMentorshipsPercentage>
  <PendingMenteeRequesters>4</PendingMenteeRequesters>
  <PendingMentorRequesters>3</PendingMentorRequesters>
  <TotalMenteeRequesters>6</TotalMenteeRequesters>
  <TotalMentorRequesters>5</TotalMentorRequesters>
  <UnmatchedMenteePercentage>15</UnmatchedMenteePercentage>
  <UnmatchedMentees>10</UnmatchedMentees>
  <UnmatchedMentorPercentage>13</UnmatchedMentorPercentage>
  <UnmatchedMentors>8</UnmatchedMentors>
</MentoringStatsResponse>