Added Custom Scope to passwordless grant

Hi All,

I am trying to create custom flow within passwordless grant type, however I am getting scope not allowed error. Any suggestion?

{
    "grant_type": "http://auth0.com/oauth/grant-type/passwordless/otp",
    "client_id": "xxxx",
    "client_secret": "xxx",
    "otp": "12345",
    "realm": "sms",
    "username": "+123232323",
    "audience": "https://dev-xxx.eu.auth0.com/api/v2/",
    "scope": "openid",
    "redirect_uri": "https://dev-xxxx.eu.auth0.com"
}

The solution I am seeking is to distinct access token based on flow so that can restrict the access token usage as per my defined flow.

Alex