Please I am having issues with the Uber sandbox request endpoint which always returns a 422 unprocessed entity error. My post request method:
SandboxRequestBody sandRequestBody = new SandboxRequestBody(UberStatus.ACCEPTED);
@POST("/v1/requests")
void postRequest(@Body SandboxRequestBody sandboxRequestBody, Callback<UberRequest> callback);
I sent the post with the scope 'request'; I do not know why I keep receiving this error or do I need to request full access permission for scope request on my developer dashboard, please help!