I'm getting an invalid request error message while trying to obtain an Oauth token from the Docusign API. I can't figure out what could be wrong here, the error is also reproducible using the DocuSign API explorer (http://iodocs.docusign.com/). See the request and response below:
Request
{ "uri": "https://demo.docusign.net/restapi/v2/oauth2/token", "method": "POST", "headers": { "Accept": "application/json", "Content-Type": "application/x-www-form-urlencoded", "Content-Length": 145 }, "body": "username=MY@USER.COM&password=MYPASSWORD&client_id=MYINTEGRATORKEY&grant_type=password&scope=api" }
Response
{ "error": "invalid_request", "error_description": "An entry with the same key already exists." }
I've tried with different keys and i'm getting the same result. This call was working before but it's now throwing this exception. Any ideas?