Retrieves all job_planning linked to jobs the logged contact has access to
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
job_planning_view| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| jobs_id |
Foreign key of jobs |
globally unique identifier | |
| date_from |
JobPlanning Date+Time from |
date | |
| date_to |
JobPlanning Date+Time to |
date | |
| user_firstname |
Planned user firstname (job_planning.user_id=>user.firstname) |
string | |
| user_lastname |
Planned user lastname (job_planning.user_id=>user.lastname) |
string | |
| jobs_id2 |
Job Numeric ID (job_planning.jobs_id=>jobs.id2) |
integer | |
| jobs_reference_back_office |
Job reference Back office (job_planning.jobs_id=>jobs.reference_back_office) |
string | |
| jobs_name |
Name of the jobs (job_planning.jobs_id=>jobs.name) |
string | |
| company_name |
Company name, owner of the project (job_planning.jobs_id=>jobs.project_id=>project.company_id=>company.name) |
string | |
| db_address_street |
Address Street of the job |
string | |
| db_address_street_number |
Address Street Number of the job |
string | |
| db_address_zip |
Address Zip code of the job |
string | |
| db_address_city |
Address City of the job |
string | |
| db_address_id | globally unique identifier | ||
| project_id | globally unique identifier | ||
| project_equipment_family_id | globally unique identifier | ||
| project_root_parent_id | globally unique identifier | ||
| jobs_nb_notes | integer | ||
| jobs_parent_id | globally unique identifier | ||
| jobs_has_child | boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "4cd6bf70-9921-4c63-b22b-4912b253178f",
"jobs_id": "ada518c8-d7f6-4d87-a32a-fd8063f7584f",
"date_from": "2026-06-24T04:01:06.8316358+00:00",
"date_to": "2026-06-24T04:01:06.8316358+00:00",
"user_firstname": "sample string 5",
"user_lastname": "sample string 6",
"jobs_id2": 7,
"jobs_reference_back_office": "sample string 8",
"jobs_name": "sample string 9",
"company_name": "sample string 10",
"db_address_street": "sample string 11",
"db_address_street_number": "sample string 12",
"db_address_zip": "sample string 13",
"db_address_city": "sample string 14",
"db_address_id": "f24f1479-c219-4c5a-b2c5-e2ae41e180e9",
"project_id": "5b4efb76-ed60-4d13-afcc-b85dbbaa27dd",
"project_equipment_family_id": "a6c6444b-4082-4826-ac44-584e5858ca89",
"project_root_parent_id": "b0a40a75-1b1b-4949-b237-6f05e3a411e3",
"jobs_nb_notes": 19,
"jobs_parent_id": "a5a17c3a-5405-4105-96c5-44aca48b4548",
"jobs_has_child": true
}
application/xml, text/xml
Sample:
<job_planning_view xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <company_name>sample string 10</company_name> <date_from>2026-06-24T04:01:06.831Z</date_from> <date_to>2026-06-24T04:01:06.831Z</date_to> <db_address_city>sample string 14</db_address_city> <db_address_id>f24f1479-c219-4c5a-b2c5-e2ae41e180e9</db_address_id> <db_address_street>sample string 11</db_address_street> <db_address_street_number>sample string 12</db_address_street_number> <db_address_zip>sample string 13</db_address_zip> <id>4cd6bf70-9921-4c63-b22b-4912b253178f</id> <jobs_has_child>true</jobs_has_child> <jobs_id>ada518c8-d7f6-4d87-a32a-fd8063f7584f</jobs_id> <jobs_id2>7</jobs_id2> <jobs_name>sample string 9</jobs_name> <jobs_nb_notes>19</jobs_nb_notes> <jobs_parent_id>a5a17c3a-5405-4105-96c5-44aca48b4548</jobs_parent_id> <jobs_reference_back_office>sample string 8</jobs_reference_back_office> <project_equipment_family_id>a6c6444b-4082-4826-ac44-584e5858ca89</project_equipment_family_id> <project_id>5b4efb76-ed60-4d13-afcc-b85dbbaa27dd</project_id> <project_root_parent_id>b0a40a75-1b1b-4949-b237-6f05e3a411e3</project_root_parent_id> <user_firstname>sample string 5</user_firstname> <user_lastname>sample string 6</user_lastname> </job_planning_view>