POST v1/Users/{userId}/JobOrders/{jobId}/Notes
This will allow saving a new job note for the given job order. If the job note Id is not zero, a Bad Request will be returned with an error response object.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| userId | 
                         userId  | 
                    string | 
                                 Required  | 
                
| jobId | 
                         jobId  | 
                    string | 
                                 Required  | 
                
Body Parameters
note
Note| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | 
                             None.  | 
                |
| JobOrderId | globally unique identifier | 
                             None.  | 
                |
| UserId | globally unique identifier | 
                             None.  | 
                |
| Value | string | 
                                 Required Max length: 3000  | 
                |
| Subject | string | 
                                 Required Max length: 35  | 
                |
| IsHidden | boolean | 
                             None.  | 
                |
| CreatedBy | string | 
                             None.  | 
                |
| CreatedDate | date | 
                             None.  | 
                |
| UpdatedBy | string | 
                             None.  | 
                |
| UpdatedDate | date | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "Id": 1,
  "JobOrderId": "5e6cd540-aa38-470c-860e-3febb7f12c4f",
  "UserId": "c7e4752a-e5ca-4537-b9c5-e5074f067b36",
  "Value": "sample string 4",
  "Subject": "sample string 5",
  "IsHidden": true,
  "CreatedBy": "sample string 7",
  "CreatedDate": "2025-11-03T06:57:22.9486858-05:00",
  "UpdatedBy": "sample string 9",
  "UpdatedDate": "2025-11-03T06:57:22.9486858-05:00"
}
        application/xml, text/xml
            Sample:
        <Note xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TGG.JOCService.Core.Models.JobOrder"> <CreatedBy>sample string 7</CreatedBy> <CreatedDate>2025-11-03T06:57:22.9486858-05:00</CreatedDate> <Id>1</Id> <IsHidden>true</IsHidden> <JobOrderId>5e6cd540-aa38-470c-860e-3febb7f12c4f</JobOrderId> <Subject>sample string 5</Subject> <UpdatedBy>sample string 9</UpdatedBy> <UpdatedDate>2025-11-03T06:57:22.9486858-05:00</UpdatedDate> <UserId>c7e4752a-e5ca-4537-b9c5-e5074f067b36</UserId> <Value>sample string 4</Value> </Note>
application/x-www-form-urlencoded
            Sample:
    
        
        application/x-msgpack
            Sample:
��sample string 7ӈ��&1
ð@�l^8�G�?��,O�sample string 5�sample string 9ӈ��&1
�*u����7E���O{6�sample string 4
        Response Information
Resource Description
IHttpActionResult
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
            Sample:
                    
Sample not available.