Hello,
In order to report an action block result, the documentation mentions:
“This JWT is then sent in the
Authorizationheader as a Bearer token. It should include yourappIdin the payload.”
While the example shows no mention of “Bearer”:
# The `callbackUrl` received from monday in the initial POST request body
POST https://callback-to-monday.com/callbacks/12345678 HTTP/1.1
Content-Type: application/json
Authorization: <SIGNED_JWT_TOKEN>The example is the way to go. A token sent as Bearer will not work.
Thank you,