POST api/v2/architectural/note
Request Information
URI Parameters
None.
Body Parameters
ArchitecturalNoteName | Description | Type | Additional information |
---|---|---|---|
ArchitecturalID | integer |
Required |
|
CreatedByName | string |
None. |
|
CategoryID | integer |
None. |
|
InternalViewOnly | boolean |
None. |
|
BoardMembersOK | boolean |
None. |
|
Note | string |
Required |
Request Formats
application/json, text/json
Sample:
{ "ArchitecturalID": 1, "CreatedByName": "sample string 2", "CategoryID": 3, "InternalViewOnly": true, "BoardMembersOK": true, "Note": "sample string 6" }
application/xml, text/xml
Sample:
<ArchitecturalNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaliberAPI"> <BoardMembersOK>true</BoardMembersOK> <CategoryID>3</CategoryID> <InternalViewOnly>true</InternalViewOnly> <Note>sample string 6</Note> <ArchitecturalID>1</ArchitecturalID> <CreatedByName>sample string 2</CreatedByName> </ArchitecturalNote>
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. |