Job
Manage jobs, which represent roles or positions within an office or project.
You can create, update, delete, and search for jobs with advanced filtering and pagination.
- Version
- 2.0.0
- OpenAPI version
- 3.0.0
Operations
Section titled “Operations” POST /v2/job/index
Returns a paginated and filterable list of jobs.
Use POST to allow complex filters via JSON payload.
Request Body
Section titled “Request Body ”Parameters for searching jobs
object
object
ID of the office job (primary key)
ID of the office
Code associated with the office job
Name of the office job
Description of the office job
ID of the project associated with the office job
Name of the office
Name of the project
Type of the project
Indicates if the job is owned and active
Indicates if the parent job is active
The field of the model to sort the list for, use a minus to revert the sort. Es -name is to require the sort in reverse order
The field establishes whether to also include historized elements that are no longer active in the results. If you leave this parameter empty the response returns only actual entries.
Example
{ "filter": { "name": "Engineer", "office_id": "off-1" }, "per-page": 10, "page": 1, "sort": "name"}
Responses
Section titled “ Responses ”List of jobs
object
ID of the office job (primary key)
ID of the office
Code associated with the office job
Name of the office job
Description of the office job
ID of the project associated with the office job
Name of the office
Name of the project
Type of the project
Indicates if the job is owned and active
Indicates if the parent job is active
Example
{ "office_job_id": "job-1", "office_id": "off-1", "code": "ENG-001", "name": "Engineer", "description": "Responsible for technical tasks", "project_id": "proj-1"}
Headers
Section titled “Headers ”Current page
Total number of pages
Number of items per page
Total number of items
GET /v2/job/view/{id}
Retrieve a job by its unique ID.
Path Parameters
Section titled “Path Parameters ”ID of the job to retrieve
Responses
Section titled “ Responses ”Job found
object
ID of the office job (primary key)
ID of the office
Code associated with the office job
Name of the office job
Description of the office job
ID of the project associated with the office job
Name of the office
Name of the project
Type of the project
Indicates if the job is owned and active
Indicates if the parent job is active
Example
{ "office_job_id": "job-1", "office_id": "off-1", "code": "ENG-001", "name": "Engineer", "description": "Responsible for technical tasks", "project_id": "proj-1"}
Job not found