Cloud Management API 1.5

Accounts

Actions

show

Show information about a single Account.

URLs
GET /api/accounts/:id
HTTP response code
200 OK
Content-type
application/vnd.rightscale.account

Required roles

Example Responses

Click on a format below to see an example response:

JSON XML
{
  "name": "SPEC_ACCOUNT",
  "created_at": "2023/10/09 11:06:00 +0000",
  "updated_at": "2023/10/09 11:06:00 +0000",
  "links": [
    {"rel":"self","href":"/api/accounts/560182816"},
    {"rel":"owner","href":"/api/users/888"},
    {"rel":"cluster","href":"/api/clusters/9"}
  ]
}
<?xml version="1.0" encoding="UTF-8"?>
<account>
  <name>SPEC_ACCOUNT</name>
  <created_at>2023/10/09 11:06:00 +0000</created_at>
  <updated_at>2023/10/09 11:06:00 +0000</updated_at>
  <links>
    <link rel="self" href="/api/accounts/560182816"/>
    <link rel="owner" href="/api/users/888"/>
    <link rel="cluster" href="/api/clusters/9"/>
  </links>
</account>