Retrieves all the job approvals

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

job_approval
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier

Required

jobs_id

Foreign key of jobs

globally unique identifier

Required

user_id

Foreign key, user that makes the approval

globally unique identifier

Required

ready_for_multi_approval

Inform if this is a temp approval prepared for a future approval with the customer (multi approval)

boolean
is_daily_approval

Intermediate approval of full approval

boolean
contact_id

Foreign key of contact, that signed the approval

globally unique identifier
contact_name

Contact fullname that sign the approval if not already exists

string

Max length: 255

customer_remarks

Remarks of the customer during the approval

string

Max length: 4000

date_generated

Local Date+Time of the approval generation

date
additional_email

Additional emails that should receive the approval pdf

string

Max length: 4000

is_signed

Inform if a signature is available (cf db_signature)

boolean
job_status_id

Job Status that will be used to alter the jobs (WaitingFurtherAction,Completed)

globally unique identifier
rating

Rating (0,5) the quality of the jobs

integer
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "4c2b62a1-1a13-492c-b8b3-b570fb474353",
  "jobs_id": "3273aa5a-1c12-4fcf-8899-7b91427e1b2e",
  "user_id": "554582af-d952-4a6a-8cca-4ec89b5c13cb",
  "ready_for_multi_approval": true,
  "is_daily_approval": true,
  "contact_id": "e18601eb-6f6d-4107-98b3-dfdbdaadea40",
  "contact_name": "sample string 7",
  "customer_remarks": "sample string 8",
  "date_generated": "2026-06-24T04:02:19.4763122+00:00",
  "additional_email": "sample string 10",
  "is_signed": true,
  "job_status_id": "3071022a-63e6-4901-ba77-7cd3453b1df1",
  "rating": 13,
  "modified_dateutc": "2026-06-24T04:02:19.4763122+00:00"
}

application/xml, text/xml

Sample:
<job_approval xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <additional_email>sample string 10</additional_email>
  <contact_id>e18601eb-6f6d-4107-98b3-dfdbdaadea40</contact_id>
  <contact_name>sample string 7</contact_name>
  <customer_remarks>sample string 8</customer_remarks>
  <date_generated>2026-06-24T04:02:19.476Z</date_generated>
  <id>4c2b62a1-1a13-492c-b8b3-b570fb474353</id>
  <is_daily_approval>true</is_daily_approval>
  <is_signed>true</is_signed>
  <job_status_id>3071022a-63e6-4901-ba77-7cd3453b1df1</job_status_id>
  <jobs_id>3273aa5a-1c12-4fcf-8899-7b91427e1b2e</jobs_id>
  <modified_dateutc>2026-06-24T04:02:19.476Z</modified_dateutc>
  <rating>13</rating>
  <ready_for_multi_approval>true</ready_for_multi_approval>
  <user_id>554582af-d952-4a6a-8cca-4ec89b5c13cb</user_id>
</job_approval>