Help creating notes via API - BodyV2
Are both blocknote and markdown required? This appears to be the case but is somewhat redundant.
7 Replies
@John from testing it looks like both aren't required since record'll be created anyway but definitely the
bodyV2
must be (even if empty like "bodyV2": {},
), otherwise there'll be problem with sending webhook if you have them enabled
But I can't get to create them properly with filled body so please confirm if you too can't create them properlyTo clarify, the note itself creates, although I cannot get the body to appear. I assume this is the same issue you are having.
I think I've found the solution
In order to create a note record, you have to give a bodyV2.blocknote part, otherwise record won't have a visible body in UI (even though body was populated properly in DB) so you don't have to give a markdown
The caveat with it is fact you can't create proper note record without bodyV2.blocknote as that's the rendered part in UI and it seems like there's no conversion in API from markdown to blocknote, also, in blocknote you need to have UUIDs as id of specific part like paragraph
I'm not sure I am totally tracking. Can you share your example?
Sure, one sec
Here's body of API request with only markdown which will result in creating a note record but without a visible body
And here's body of API request with only blocknote which will result in creating a note record with visible body
In short, you have to use blocknote if you want to have a visible body of note record in UI
Opened an issue here
GitHub
Note body not visible when via API with bodyV2 without blocknote · ...
Bug Description Creating a note via API with bodyV2 and without a blocknote component will not allow the body component to be visible in the UI despite a successful API call. Inputting markdown tex...
Thanks, we'll look into it