From 0e3b7336826898c2fbb68f4a614f1d21f471e2d3 Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Date: Fri, 5 Feb 2016 13:52:02 +0100 Subject: [PATCH] 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 --- .../v2.0/samples/client/authenticate-credentials-request.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-ref/src/wadls/identity-api/src/v2.0/samples/client/authenticate-credentials-request.json b/api-ref/src/wadls/identity-api/src/v2.0/samples/client/authenticate-credentials-request.json index 48ebfb3fa..a50203a26 100644 --- a/api-ref/src/wadls/identity-api/src/v2.0/samples/client/authenticate-credentials-request.json +++ b/api-ref/src/wadls/identity-api/src/v2.0/samples/client/authenticate-credentials-request.json @@ -1,8 +1,8 @@ { "auth": { - "tenantId": "demo", + "tenantName": "demo", "passwordCredentials": { - "userId": "demo", + "username": "demo", "password": "secretsecret" } }