GET api/PublicNotes/{userId}
Get all the public notes tile entities for a user. - May be accessed anonymously
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of all user's public 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:34:42.9914971-06:00" }, { "NoteId": "sample string 1", "Title": "sample string 2", "ModifiedDateUtc": "2024-12-22T05:34:42.9914971-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:34:42.9914971-06:00</ModifiedDateUtc> <NoteId>sample string 1</NoteId> <Title>sample string 2</Title> </NoteTitleEntity> <NoteTitleEntity> <ModifiedDateUtc>2024-12-22T05:34:42.9914971-06:00</ModifiedDateUtc> <NoteId>sample string 1</NoteId> <Title>sample string 2</Title> </NoteTitleEntity> </ArrayOfNoteTitleEntity>