Deploying mesh backend project using app builder gives auth error
Hi Team,
I have created mesh project on local and its working fine. Then i have created project using aio app init and in actions folders added required files as i don't have UI only backend mesh action so i want to deploy this only.
I have used aio app deploy and it has deployed web and non-web actions like

when u try to access
-> https://xxx-poc-stage.adobeio-static.net/api/v1/web/<xy>/mesh then i says
curl -H "Authorization: Bearer Apikey" -H "x-gw-ims-org-id: @xx59_X@AdobeOrg" https://xxx-poc-stage.adobeio-static.net/api/v1/web/project/mesh
{
"error": "request is invalid, reason: failed authorization. Please verify your token and organization id."
}
and for secured:
curl -H "Authorization: Bearer APikey" -H "x-gw-ims-org-id: @AdobeOrg" https://xx-poc-stage.adobeio-static.net/api/v1/web/project/__secured_mesh
{
"code": "8iPxEOyhU2lHIT7HhFC5DwZLkmXhxLpK",
"error": "The requested resource does not exist."
}
Manifest.yml:
packages:
project:
actions:
mesh:
function: actions/mesh/index.js
runtime: 'nodejs:18'
web: yes
annotations:
require-adobe-auth: false
inputs:
LOG_LEVEL: debug
Can anyone help here.. what i am missing as api key is already generated and using for auth.
TIA
