Hi everyone,
I’m working on an integration using the Monday Apps SDK and encountered an issue with the monday.storage.instance.getItem and monday.storage.instance.setItem methods. The responses I’m getting don’t seem to match what’s described in the Monday.com documentation. Specifically, the getItem response doesn’t include a field named value, as expected.
Here are the responses I received:
SetItem Response:
{
"method": "storage",
"args": {
"method": "set",
"key": "login",
"value": "loggedin",
"options": {},
"segment": "v2"
},
"requestId": "tcf49hp",
"version": "0.5.5"
}
GetItem Response:
{
"method": "storage",
"args": {
"method": "get",
"key": "login",
"options": {},
"segment": "v2"
},
"requestId": "d3bhc1s",
"version": "0.5.5"
}
Issue:
- According to the documentation, the
getItemresponse should include avaluefield containing the stored value. However, in my case, this field is missing from the response. - The structure of the responses doesn’t align with what I expected based on the SDK examples.