keystone/api-ref/source/v3/samples/admin/auth-password-unscoped-request-with-domain.json
npraveen35 193915938c changed domain id to name in JSON request
When authenticating, it is more common for a user to supply a name
for a resource rather than an ID.

Further, since the bootstrapping command was introduced the "id" of the
default domain is no longer "default" but rather a UUID.

Change-Id: Ib75fac089924ab9c513861027f1875058232408e
Closes-Bug: #1633285
2016-10-18 03:45:27 +00:00

19 lines
386 B
JSON

{
"auth": {
"identity": {
"methods": [
"password"
],
"password": {
"user": {
"name": "admin",
"domain": {
"name": "Default"
},
"password": "devstacker"
}
}
}
}
}