GET
/
v1
/
notes
/
list
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",
        },
    ]
}   

Body

limit
string
required
This is the limit of the notes.
offset
string
required
This is the offset of the notes.
order_direction
string
required
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",
        },
    ]
}