v1
latestOpenAPI 3.1.02026-07-224239180.9 KBInterview Module
Add a member to an interview module
Adds one employee as a member of an interview module with optional initial training status and per-member requirements. When supplied, the member weekly-limit override uses null to mean unlimited. The response returns the new membership and calculated training progress.
post/v1/interview-modules/{moduleId}/members
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
Request body
Example request
{
"employee_id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}Response
Success
Example response
{
"employee": {
"id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
}
}