Hi everyone,
I’m building an integration that will poll Odoo for new Material Transfer Requests and then automatically create corresponding Requests (with line items) in our AppSheet app (“Request Manager”). My plan is:
What I’ve tried
headers: {
'Authorization': `Token token="${ACCESS_KEY}"`,
'Accept': 'application/json'
}
Verified with cURL directly against the AppSheet endpoint:
curl -v -X POST \
https://www.appsheet.com/api/v2/apps/<AppID>/tables/Requests/Action \
-H 'Authorization: Token token="V2-abc123...xyz"' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"Action":"Add",
"Properties":{"Locale":"en-US","Timezone":"Asia/Riyadh"},
"Rows":[{"Status":"Draft"}]
}'
The error I’m seeing
{
"title":"Forbidden",
"status":403,
"detail":"The ApplicationAccessKey in the HTTP header did not match any of the valid ApplicationAccessKeys for the called application."
}
Screenshot of my Integrations settings
My questions
Thanks in advance.
User | Count |
---|---|
16 | |
6 | |
6 | |
3 | |
2 |