Retrieves the job_planning with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
key

job_planning.id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

job_planning_view
NameDescriptionTypeAdditional 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": "4ad2e7d7-756c-42fc-b687-75f367921aa3",
  "jobs_id": "325ef43e-fada-4636-9f8e-8e57efab0188",
  "date_from": "2026-06-24T04:04:26.5728857+00:00",
  "date_to": "2026-06-24T04:04:26.5728857+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": "c37d60bd-4b6b-499f-bcf4-48ef2f080ee6",
  "project_id": "7319da16-d2c5-492c-b931-e5e0c0092307",
  "project_equipment_family_id": "dd239a5a-7707-424a-bab3-339ebd108cd7",
  "project_root_parent_id": "1c250846-021e-48b2-aed7-543dfb261fcd",
  "jobs_nb_notes": 19,
  "jobs_parent_id": "06022b60-7b99-4b18-8870-5188f409dd1b",
  "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:04:26.572Z</date_from>
  <date_to>2026-06-24T04:04:26.572Z</date_to>
  <db_address_city>sample string 14</db_address_city>
  <db_address_id>c37d60bd-4b6b-499f-bcf4-48ef2f080ee6</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>4ad2e7d7-756c-42fc-b687-75f367921aa3</id>
  <jobs_has_child>true</jobs_has_child>
  <jobs_id>325ef43e-fada-4636-9f8e-8e57efab0188</jobs_id>
  <jobs_id2>7</jobs_id2>
  <jobs_name>sample string 9</jobs_name>
  <jobs_nb_notes>19</jobs_nb_notes>
  <jobs_parent_id>06022b60-7b99-4b18-8870-5188f409dd1b</jobs_parent_id>
  <jobs_reference_back_office>sample string 8</jobs_reference_back_office>
  <project_equipment_family_id>dd239a5a-7707-424a-bab3-339ebd108cd7</project_equipment_family_id>
  <project_id>7319da16-d2c5-492c-b931-e5e0c0092307</project_id>
  <project_root_parent_id>1c250846-021e-48b2-aed7-543dfb261fcd</project_root_parent_id>
  <user_firstname>sample string 5</user_firstname>
  <user_lastname>sample string 6</user_lastname>
</job_planning_view>