Hi All,
https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-api-pagetype
I have successfully able to create custom API page for "vendor bank account" list in business central online sandbox environment by using above link and it worked as expected..
I did the same steps for online production environment but while I am trying to download symbols for production environment its shows the below error in VS code..

This is my launch json file and made some modification for production environment. I don't know what I'm missing. Kindly help me to fix this issue..
{
"version": "0.2.0",
"configurations": [
{
"name": "Microsoft cloud sandbox",
"request": "launch",
"type": "al",
"environmentType": "Production",
"environmentName": "Production",
"tenant": "38f3be-a48f-4147-adf8-7e080s5e46b57",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": true,
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true
}
]
}