POST torque/update/note?ecNumber={ecNumber}
If the Note object passed in (note) already exists, the values will be updated in the database,
otherwise it will be newly inserted into the database.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ecNumber |
The Engineering Change reference number that goes with the change |
string |
Required |
Body Parameters
The new/updated Note object to be inserted/changed
Note| Name | Description | Type | Additional information |
|---|---|---|---|
| noteId | integer |
None. |
|
| ecNumber | string |
None. |
|
| noteDescription | string |
None. |
|
| isNew | integer |
None. |
|
| isChanged | integer |
None. |
|
| isActive | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"noteId": 1,
"ecNumber": "sample string 2",
"noteDescription": "sample string 3",
"isNew": 4,
"isChanged": 5,
"isActive": 6
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |