Retrieves the job approval list entry with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The job approval list entry id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the job approval list entry, or 404 Not Found if it doesn't exist.
job_approval_list| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier |
Required |
| job_approval_id |
Job approval id |
globally unique identifier | |
| jobs_id |
Jobs id |
globally unique identifier | |
| date_generated |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "6b6d0517-38f2-4b56-a36c-456058d03dc2",
"job_approval_id": "94c42267-d993-4ae2-999b-27402d805df6",
"jobs_id": "4e6aba2a-21e5-4fbc-b559-b540159135c8",
"date_generated": "2026-09-16T08:37:06.0853658+00:00"
}
application/xml, text/xml
Sample:
<job_approval_list xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <date_generated>2026-09-16T08:37:06.085Z</date_generated> <id>6b6d0517-38f2-4b56-a36c-456058d03dc2</id> <job_approval_id>94c42267-d993-4ae2-999b-27402d805df6</job_approval_id> <jobs_id>4e6aba2a-21e5-4fbc-b559-b540159135c8</jobs_id> </job_approval_list>