POST api/v2/violation/note
Request Information
URI Parameters
None.
Body Parameters
ViolationNoteName | Description | Type | Additional information |
---|---|---|---|
ViolationID | integer |
Required |
|
CategoryID | integer |
None. |
|
InternalViewOnly | boolean |
None. |
|
BoardMembersOK | boolean |
None. |
|
Note | string |
Required |
Request Formats
application/json, text/json
Sample:
{ "ViolationID": 1, "CategoryID": 2, "InternalViewOnly": true, "BoardMembersOK": true, "Note": "sample string 5" }
application/xml, text/xml
Sample:
<ViolationNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaliberAPI"> <BoardMembersOK>true</BoardMembersOK> <CategoryID>2</CategoryID> <InternalViewOnly>true</InternalViewOnly> <Note>sample string 5</Note> <ViolationID>1</ViolationID> </ViolationNote>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessageName | 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. |