Creates or updates a job dispatch log.
Request Information
URI Parameters :
None.
Body Parameters :
job_dispatch_log| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| jobs_id |
Job Id |
globally unique identifier | |
| user_id |
User Id |
globally unique identifier | |
| date_create |
Date+Time in UTC when the row has been created |
date | |
| date_proceeded |
Date+Time in UTC when the Dispatch goes to PLanned or Rejected |
date | |
| is_accepted |
Case the technician accept it. |
boolean | |
| is_rejected |
Case the technician reject it |
boolean | |
| rejected_reason |
In case the technician reject it, what is the reason |
string | |
| sys_logical_delete |
Boolean used to logically delete the record. This is to optimize the synchronization. sys_logical_delete doesn't need to be proceeded offline (record can be physically deleted offline) |
boolean | |
| is_workshop |
Using to distinguish between dispatch and workshop |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| sequence |
sequence |
integer | |
| assigned_user_ids |
The list of user_id that assigned to the job, separate by commas. It's not a real column |
string |
Request Formats :
application/json, text/json
{
"id": "a2f7e827-f89d-49e0-a6e0-7151fd837693",
"jobs_id": "8b28376d-1ea9-490b-85e1-b6fe259e0296",
"user_id": "d41b9217-343b-44cf-af55-fd3f026e7875",
"date_create": "2026-09-16T10:12:49.1220103+00:00",
"date_proceeded": "2026-09-16T10:12:49.1220103+00:00",
"is_accepted": true,
"is_rejected": true,
"rejected_reason": "sample string 8",
"sys_logical_delete": true,
"is_workshop": true,
"modified_dateutc": "2026-09-16T10:12:49.1220103+00:00",
"sequence": 12,
"assigned_user_ids": "sample string 13"
}
application/xml, text/xml
<job_dispatch_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <assigned_user_ids>sample string 13</assigned_user_ids> <date_create>2026-09-16T10:12:49.122Z</date_create> <date_proceeded>2026-09-16T10:12:49.122Z</date_proceeded> <id>a2f7e827-f89d-49e0-a6e0-7151fd837693</id> <is_accepted>true</is_accepted> <is_rejected>true</is_rejected> <is_workshop>true</is_workshop> <jobs_id>8b28376d-1ea9-490b-85e1-b6fe259e0296</jobs_id> <modified_dateutc>2026-09-16T10:12:49.122Z</modified_dateutc> <rejected_reason>sample string 8</rejected_reason> <sequence>12</sequence> <sys_logical_delete>true</sys_logical_delete> <user_id>d41b9217-343b-44cf-af55-fd3f026e7875</user_id> </job_dispatch_log>
Response Information
Resource Description :
IHttpActionResult containing the saved job dispatch log.
job_dispatch_log| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| jobs_id |
Job Id |
globally unique identifier | |
| user_id |
User Id |
globally unique identifier | |
| date_create |
Date+Time in UTC when the row has been created |
date | |
| date_proceeded |
Date+Time in UTC when the Dispatch goes to PLanned or Rejected |
date | |
| is_accepted |
Case the technician accept it. |
boolean | |
| is_rejected |
Case the technician reject it |
boolean | |
| rejected_reason |
In case the technician reject it, what is the reason |
string | |
| sys_logical_delete |
Boolean used to logically delete the record. This is to optimize the synchronization. sys_logical_delete doesn't need to be proceeded offline (record can be physically deleted offline) |
boolean | |
| is_workshop |
Using to distinguish between dispatch and workshop |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| sequence |
sequence |
integer | |
| assigned_user_ids |
The list of user_id that assigned to the job, separate by commas. It's not a real column |
string |
Response Formats
application/json, text/json
{
"id": "b4a368c2-7842-47e9-9dc6-aa717bb201d0",
"jobs_id": "e0ba25e4-ee19-4ad5-9afc-1e73c47f0c70",
"user_id": "640b171a-25bd-4021-848a-a93b01807c41",
"date_create": "2026-09-16T10:12:49.1220103+00:00",
"date_proceeded": "2026-09-16T10:12:49.1220103+00:00",
"is_accepted": true,
"is_rejected": true,
"rejected_reason": "sample string 8",
"sys_logical_delete": true,
"is_workshop": true,
"modified_dateutc": "2026-09-16T10:12:49.1220103+00:00",
"sequence": 12,
"assigned_user_ids": "sample string 13"
}
application/xml, text/xml
<job_dispatch_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <assigned_user_ids>sample string 13</assigned_user_ids> <date_create>2026-09-16T10:12:49.122Z</date_create> <date_proceeded>2026-09-16T10:12:49.122Z</date_proceeded> <id>b4a368c2-7842-47e9-9dc6-aa717bb201d0</id> <is_accepted>true</is_accepted> <is_rejected>true</is_rejected> <is_workshop>true</is_workshop> <jobs_id>e0ba25e4-ee19-4ad5-9afc-1e73c47f0c70</jobs_id> <modified_dateutc>2026-09-16T10:12:49.122Z</modified_dateutc> <rejected_reason>sample string 8</rejected_reason> <sequence>12</sequence> <sys_logical_delete>true</sys_logical_delete> <user_id>640b171a-25bd-4021-848a-a93b01807c41</user_id> </job_dispatch_log>