Error while creating Email Verification ticket

I am following this document Auth0 Management API v2 to create an email verification ticket
The payload sent is :
url = “https://<>/api/v2/tickets/email-verification”

payload = json.dumps({
“result_url”: “<>”,
“user_id”: “<>”,
“client_id”: “<>”,
“ttl_sec”: 3600,
“includeEmailInRedirect”: True,
“identity”: {
“user_id”: “<>”,
“provider”: “auth0”
}
})
headers = {
‘Content-Type’: ‘application/json’,
‘Accept’: ‘application/json’,
‘Authorization’: ‘Bearer <>’
}

I keep seeing the error BadRequest: Payload validation error: 'Invalid property result_url'

having same issue, did you get this solved?

Not yet. Created the flow on my end.