This endpoint lets you fetch a test instance under a task of your organization. More information about the tests instance can be obtained.
A list of keywords can be provided with the expand property in the request body. For each keyword provided, extra information about the test instance will be returned in the response.
{
expand: ("test" | "uniqId" | "creditCost" | "roomForm" | "identityPhoto")[];
}
By default, a "detailed" test instance object will be returned. Additional properties can will be added on top of the detailed object.
Detailed & {
creditCost?: number;
uniqId?: string;
test?: {
source: "own-test" | "marketplace" | "talent-library-test" | "free-talent-library-test" | "recruitment-test-library" |
"free-recruitment-test-library" | "trial" | "unknown";
testId: string;
organizationId: string
},
roomForm?: Record;
identityPhoto?: { url: string | null };
}