Notes
Retrieve Note
This endpoint retrieves a note.
GET
/v1/notes/:id
Bearer*
Body
id
string
This is the id of the note.
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/:id' \
--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/:id' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
}'
{
"notes": [
{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
},
]
}