GET api/UserNotes
Get all the notes tile entities for the user (owner of Token).
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of all user's note tiles. The data inculdes the note URL slug and modified date.
Collection of NoteTitleEntityName | Description | Type | Additional information |
---|---|---|---|
NoteId | string |
None. |
|
Title | string |
None. |
|
ModifiedDateUtc | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "NoteId": "sample string 1", "Title": "sample string 2", "ModifiedDateUtc": "2024-12-22T05:53:48.4977568-06:00" }, { "NoteId": "sample string 1", "Title": "sample string 2", "ModifiedDateUtc": "2024-12-22T05:53:48.4977568-06:00" } ]
application/xml, text/xml
Sample:
<ArrayOfNoteTitleEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyOnlineNotes.Models"> <NoteTitleEntity> <ModifiedDateUtc>2024-12-22T05:53:48.4977568-06:00</ModifiedDateUtc> <NoteId>sample string 1</NoteId> <Title>sample string 2</Title> </NoteTitleEntity> <NoteTitleEntity> <ModifiedDateUtc>2024-12-22T05:53:48.4977568-06:00</ModifiedDateUtc> <NoteId>sample string 1</NoteId> <Title>sample string 2</Title> </NoteTitleEntity> </ArrayOfNoteTitleEntity>