GET request on endpoint https://ads-api.twitter.com/2/accounts returns the following error response on Postman. I am approved of access but don’t know why I can not access it.

{
    "errors": [
        {
            "code": "INVALID",
            "message": "Version 2.0 is not available."
        }
    ],
    "request": {
        "params": {}
    }
}

A list of supported versions is available here:

Your application should be using version 10. Can you describe where you saw examples using version 2?

Hi @osowskit1 calling https://ads-api.twitter.com/10/accounts returns the following response body with status 403.

{
    "errors": [
        {
            "message": "You currently have Essential access which includes access to Twitter API v2 endpoints only. If you need access to this endpoint, you’ll need to apply for Elevated access via the Developer Portal. You can learn more here: https://developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api#v2-access-leve",
            "code": 453
        }
    ]
}

There is Ads Api label in front of my app name in the developer portal.

Please let me know if I am missing some piece of information or I must acquire Elevated access in order to call Ads Api and must consume the latest version as of now.