PUT api/Note/ArchiveNote?noteDatabaseId={noteDatabaseId}&isArchive={isArchive}
This end point is usde to archive note.By default isArchive is false, set it to true in order to archive a note.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| noteDatabaseId | globally unique identifier |
Required |
|
| isArchive | boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
NowCertsApiResultWithDatabaseId| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| Status | ApiStatus |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "4e72c736-d698-48a2-bf41-0eb25cf8a751",
"status": 0,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<NowCertsApiResultWithDatabaseId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <Message>sample string 2</Message> <Status>Error</Status> <DatabaseId>4e72c736-d698-48a2-bf41-0eb25cf8a751</DatabaseId> </NowCertsApiResultWithDatabaseId>