PUT api/AuditAddendumItems/{id}

Updates an existing audit addendum item record.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AuditAddendumItem'.

Response Information

Resource Description

An empty response body with a 204 response on success.

None.