PUT api/Notes/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
Notes| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Key | globally unique identifier |
None. |
|
| Header | string |
None. |
|
| Active | boolean |
None. |
|
| Description | string |
None. |
|
| Status_CreatedAt | date |
None. |
|
| Status_CreatedBy | string |
None. |
|
| Status_LastUpdatedAt | date |
None. |
|
| Status_LastUpdatedBy | string |
None. |
|
| Status_Deleted | boolean |
None. |
|
| Status_DeletedAt | date |
None. |
|
| Status_DeletedBy | string |
None. |
|
| Document | DocumentContent |
None. |
|
| Documents | Collection of DocumentInfo |
None. |
|
| DeleteDocument | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "43d5aa55-e9d1-4bd8-af32-33d3c769cd2f",
"Name": "sample string 2",
"Key": "fbcd9981-f292-4078-8ef2-6e32b05f943e",
"Header": "sample string 4",
"Active": true,
"Description": "sample string 6",
"Status_CreatedAt": "2025-12-21T03:13:43.8546674-06:00",
"Status_CreatedBy": "sample string 8",
"Status_LastUpdatedAt": "2025-12-21T03:13:43.8546674-06:00",
"Status_LastUpdatedBy": "sample string 10",
"Status_Deleted": true,
"Status_DeletedAt": "2025-12-21T03:13:43.8556766-06:00",
"Status_DeletedBy": "sample string 13",
"Document": {
"FileName": "sample string 1",
"Base64FileContent": "sample string 2"
},
"Documents": [
{
"FileName": "sample string 1",
"Key": "sample string 2"
},
{
"FileName": "sample string 1",
"Key": "sample string 2"
}
],
"DeleteDocument": true
}
application/xml, text/xml
Sample:
<Notes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UEP.Core.Models">
<Active>true</Active>
<DeleteDocument>true</DeleteDocument>
<Description>sample string 6</Description>
<Document>
<Base64FileContent>sample string 2</Base64FileContent>
<FileName>sample string 1</FileName>
</Document>
<Documents>
<DocumentInfo>
<FileName>sample string 1</FileName>
<Key>sample string 2</Key>
</DocumentInfo>
<DocumentInfo>
<FileName>sample string 1</FileName>
<Key>sample string 2</Key>
</DocumentInfo>
</Documents>
<Header>sample string 4</Header>
<Id>43d5aa55-e9d1-4bd8-af32-33d3c769cd2f</Id>
<Key>fbcd9981-f292-4078-8ef2-6e32b05f943e</Key>
<Name>sample string 2</Name>
<Status_CreatedAt>2025-12-21T03:13:43.8546674-06:00</Status_CreatedAt>
<Status_CreatedBy>sample string 8</Status_CreatedBy>
<Status_Deleted>true</Status_Deleted>
<Status_DeletedAt>2025-12-21T03:13:43.8556766-06:00</Status_DeletedAt>
<Status_DeletedBy>sample string 13</Status_DeletedBy>
<Status_LastUpdatedAt>2025-12-21T03:13:43.8546674-06:00</Status_LastUpdatedAt>
<Status_LastUpdatedBy>sample string 10</Status_LastUpdatedBy>
</Notes>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.