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": "768bd6e8-a8c1-4d54-bd01-95bcc6ca21c1",
"JobID": 3,
"NoteDate": "2026-09-01T19:31:03.7449941+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>768bd6e8-a8c1-4d54-bd01-95bcc6ca21c1</GUID> <ID>1</ID> <JobID>3</JobID> <NewJobNote>true</NewJobNote> <NoteDate>2026-09-01T19:31:03.7449941+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.