Notes
Create Note
This endpoint creates a note.
POST
/v1/notes/create
Bearer*
Body
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.
created_by
string
This is the user that created the note.
last_modified_by
string
This is the user that last modified 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/retrieve' \
--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/retrieve' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
}'
{
"notes": [
{
"id": "nt_1NXWPnCo6bFb1KQto6C8OWvE",
},
]
}