Pipeline Templates
These endpoints allow you to manage recruitment pipeline templates. Pipeline templates define standardized workflows for different types of recruitment processes.
Each pipeline template serves as a blueprint that contains a sequence of stage templates, defining how candidates should progress through the recruitment process.
These templates can be reused across multiple positions to ensure consistent recruitment practices.
Endpoints
get /api/v3/recruitment/pipeline_templates post /api/v3/recruitment/pipeline_templates delete /api/v3/recruitment/pipeline_templates/:resource_id get /api/v3/recruitment/pipeline_templates/:resource_id patch /api/v3/recruitment/pipeline_templates/:resource_id
get/api/v3/recruitment/pipeline_templates
Return a paginated list of recruitment/pipeline_templates
Input Schema
object
object
object
The key is the resource type and the value is an array of fields.
dictionary
Typescript
type InputSchema = {
page?: {
// The page number, default to 1
number?: number;
// The number of items per page, default to 1000
size?: number;
};
// The sort order, comma separated list of fields. See sorting section for more details
sort?: string;
// Set to true to return the total number of items in the collection
count?: boolean;
filter?: {
id?: any;
name?: any;
description?: any;
organizational_unit?: any;
name__match?: any;
organizational_unit__match?: any;
};
// The fields to include in the response.
// The key is the resource type and the value is an array of fields.
fields?: { [key: string]: Array<any> };
};
Output Schema
object
array
object
object
array
Typescript
type OutputSchema = {
data: Array<{
type: string;
id?: string;
attributes?: {
id?: number;
name?: string;
description?: string | null;
organizational_unit?: string;
};
relationships?: Record<string, any>;
}>;
included?: Array<Record<string, any>>;
};
post/api/v3/recruitment/pipeline_templates
Create a new recruitment/pipeline_templates
Input Schema
object
object
object
Typescript
type InputSchema = {
data: {
type: string;
attributes: {
id?: number;
name?: string;
description?: string | null;
organizational_unit?: string;
};
};
};
delete/api/v3/recruitment/pipeline_templates/:resource_id
Delete the recruitment/pipeline_templates
Input Schema
object
Typescript
type InputSchema = { resource_id: number };
get/api/v3/recruitment/pipeline_templates/:resource_id
Show a specific recruitment/pipeline_templates
Input Schema
object
array
dictionary
Typescript
type InputSchema = {
resource_id: number;
included?: Array<string>;
fields?: { [key: string]: Array<any> };
};
Output Schema
object
object
object
array
Typescript
type OutputSchema = {
data: {
type: string;
id?: string;
attributes?: {
id?: number;
name?: string;
description?: string | null;
organizational_unit?: string;
};
relationships?: Record<string, any>;
};
included?: Array<Record<string, any>>;
};
patch/api/v3/recruitment/pipeline_templates/:resource_id
Update a recruitment/pipeline_templates
Input Schema
object
object
object
Typescript
type InputSchema = {
resource_id: number;
data: {
type: string;
attributes: {
id?: number;
name?: string;
description?: string | null;
organizational_unit?: string;
};
};
};