v1

latestOpenAPI 3.1.02026-07-224239180.9 KB
Interview Module

Get interview module statistics

Returns member training counts for one interview module. Modules outside the authenticated organization are reported as not found.

get/v1/interview-modules/{moduleId}/stats

Path parameters

moduleIdstring required

an interview module ID. Accepts the canonical prefixed compact UUID, a prefixed dashed UUID, a bare dashed UUID, or a bare compact UUID; input is case-insensitive.

Example:mod_a1b2c3d4e5f64789a1b2c3d4e5f64789

Response

Success

members_trained_countinteger required

Active members who have completed training.

members_in_shadow_countinteger required

Active members currently in shadow training.

members_in_reverse_shadow_countinteger required

Active members currently in reverse-shadow training.

members_countinteger required

Total active members in the interview module.

members_in_training_countinteger required

Active members currently shadowing or reverse shadowing.

members_in_pending_approval_countinteger required

Members whose completed training is awaiting graduation approval.

Example response

{
  "members_trained_count": 14,
  "members_in_shadow_count": 6,
  "members_in_reverse_shadow_count": 4,
  "members_count": 24,
  "members_in_training_count": 10,
  "members_in_pending_approval_count": 2
}