Accounts

edit

Fetch current account information

edit

Fetch current account information.

Request

edit

GET /api/v1/account

Responses

edit
200

(AccountResponse)

Account fetched successfully

404

(BasicFailedReply)

Account not found. (code: accounts.not_found)

Headers

x-cloud-error-codes (string; allowed values: [accounts.not_found])
The error codes associated with the response

Request example

edit
curl -XGET https://api.elastic-cloud.com/api/v1/account \
-H "Authorization: ApiKey $EC_API_KEY"

Updates the current account

edit

Updates the current account.

Request

edit

PATCH /api/v1/account

Request body

edit

(string) (required) All changes in the specified object are applied to the current account according to the JSON Merge Patch processing rules. Omitting existing fields causes the same values to be reapplied. Specifying a null value reverts the field to the default value, or removes the field when no default value exists.

Responses

edit
200

(AccountResponse)

Account updated successfully

404

(BasicFailedReply)

Account not found. (code: accounts.not_found)

Headers

x-cloud-error-codes (string; allowed values: [accounts.not_found])
The error codes associated with the response

Request example

edit
curl -XPATCH https://api.elastic-cloud.com/api/v1/account \
-H "Authorization: ApiKey $EC_API_KEY" \
-H 'Content-Type: application/json'

Updates the current account

edit

Updates the current account.

Request

edit

PUT /api/v1/account

Request body

edit

(AccountUpdateRequest) (required) the current account

Responses

edit
200

(AccountResponse)

Account updated successfully

404

(BasicFailedReply)

Account not found. (code: accounts.not_found)

Headers

x-cloud-error-codes (string; allowed values: [accounts.not_found])
The error codes associated with the response

Request example

edit
curl -XPUT https://api.elastic-cloud.com/api/v1/account \
-H "Authorization: ApiKey $EC_API_KEY" \
-H 'Content-Type: application/json' \
-d '
{
   "trust" : {
      "trust_all" : true
   }
}
'