PUT api/AuditAddendumItems/{id}
Updates an existing audit addendum item record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the audit addendum item record to update. |
integer |
Required |
Body Parameters
The audit addendum item data that will be used to update the record.
AuditAddendumItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID of the record. |
integer |
None. |
| AuditAddendumID |
The ID of the audit addendum this item is related to. |
integer |
None. |
| AuditItemID |
The ID of the audit item this addendum item is for. |
integer |
None. |
| Notes |
Notes taken by the auditor for the addendum item. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"AuditAddendumID": 2,
"AuditItemID": 3,
"Notes": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
An empty response body with a 204 response on success.
None.