Notes
List Notes
This endpoint list notes.
GET
/v1/notes/list
Bearer*
Body
limitrequired
string
This is the limit of the notes.
offsetrequired
string
This is the offset of the notes.
order_directionrequired
string
This is the order direction of the notes.
Response
id
string
This is the id of the note
title
string
This is the title of the note
body
string
This is the body of the note
created_date
string
This is the created date of the note
last_modified_date
string
This is the last modified date of the note
curl --location --request GET 'https://api.stateset.com/v1/note/list' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
}'
{
"notes": [
{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
},
]
}
curl --location --request GET 'https://api.stateset.com/v1/note/list' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
}'
{
"notes": [
{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
},
]
}