POST /v6/note/create

POST /v6/note/create

Body Required

  • tagsCheckedRequest array[integer(int32)] | null
  • titleRequest string | null
  • textRequest string | null
  • commonNoteID integer(int32) | null

Responses

  • OK

    Hide response attributes Show response attributes object
    • tagsCheckedUncheckedResponse array[string] | null
    • titleResponse string | null
    • textResponse string | null
    • structuredTagsListResponse array[string] | null
    • commonNoteID integer(int32) | null
    • errorMessageResponse string | null
curl \
 --request POST 'http://api.example.com/v6/note/create' \
 --header "Content-Type: application/json" \
 --data '{"tagsCheckedRequest":[42],"titleRequest":"string","textRequest":"string","commonNoteID":42}'
curl \
 --request POST 'http://api.example.com/v6/note/create' \
 --header "Content-Type: text/json"
curl \
 --request POST 'http://api.example.com/v6/note/create' \
 --header "Content-Type: application/*+json"
Request examples
{
  "tagsCheckedRequest": [
    42
  ],
  "titleRequest": "string",
  "textRequest": "string",
  "commonNoteID": 42
}