Notion -> my glideapp with webhook. how to update

hello~
i’d like to migrate notion’s row to glideapp. for this
i am applying webhook and i success create a row from notion to glide.
and now, I want to update the row.

for this. I made 'UniueID" column at glide table data and when row created , this column fill out created unique value automaticall.
according to documentation i read, for updating the row, notion side should know the UniqueID.
my question, how to dispatch this UniqueID to notion side.

another question is
Can i try this job by manually ( copy & paste ).

I tried like below for updating, but failure . if possible, let me know how to do this by manually

{
“title”:“2nd Example” ,
“content” : “single asterisks single underscores double asterisksdouble underscores cancelline”,
“UniqueID” : “3b3dab3a-f863-42b8-a3c8-090dc07c0c94”
}

When updating rows via the Glide API, you must reference the RowID. A typical call looks like so:

curl --request POST 'https://api.glideapp.io/api/function/mutateTables' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer [SECRET]' \
  --data-raw '{
  "appID": "[APP ID],
  "mutations": [
    {
      "kind": "set-columns-in-row",
      "tableName": "[TABLE NAME]",
      "columnValues": {
        "Name": "Name"
      },
      "rowID": "[ROW-ID]"
    }
  ]
}'

See also: Using Glide API | Glide Docs

it means I create webapp for translate notion schem to glideapp ?
directly, notion can’t send json its own schema ?
or there is function to change ?

or there is ‘set-columns-in-row’ at workflow, can i apply this ?

thank you for your reply.
I recogninzed how to apply call api from you.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.