POST api/Jobs/PostJobNote?userId={userId}&password={password}&version={version}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
|
| password | string |
Required |
|
| version | string |
Required |
Body Parameters
Job_Note| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| GUID | globally unique identifier |
None. |
|
| JobID | integer |
None. |
|
| NoteDate | date |
None. |
|
| NoteDetail | string |
None. |
|
| NewJobNote | boolean |
None. |
|
| Synced | boolean |
None. |
|
| UserName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"GUID": "6cd2eafa-6f07-49ad-a35d-edef41e47ebe",
"JobID": 3,
"NoteDate": "2026-09-03T11:34:10.6741637+01:00",
"NoteDetail": "sample string 5",
"NewJobNote": true,
"Synced": true,
"UserName": "sample string 8"
}
application/xml, text/xml
Sample:
<Job_Note xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models"> <GUID>6cd2eafa-6f07-49ad-a35d-edef41e47ebe</GUID> <ID>1</ID> <JobID>3</JobID> <NewJobNote>true</NewJobNote> <NoteDate>2026-09-03T11:34:10.6741637+01:00</NoteDate> <NoteDetail>sample string 5</NoteDetail> <Synced>true</Synced> <UserName>sample string 8</UserName> </Job_Note>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.