Fix identity api v2.0 authentication example

The sample authentication request for identity api v2.0 uses the keys
"tenantId" and "userId", but the corresponding values are names.
This patch replaces "tenantId" with "tenantName" and "userId" with
"username".

Change-Id: Ie5adfb5a0eaa58517f925d2f3ca0f3fb3cc17d37
This commit is contained in:
Daniel Gonzalez 2016-02-05 13:52:02 +01:00
parent 8f4ac9fd68
commit 0e3b733682

View File

@ -1,8 +1,8 @@
{
"auth": {
"tenantId": "demo",
"tenantName": "demo",
"passwordCredentials": {
"userId": "demo",
"username": "demo",
"password": "secretsecret"
}
}