Welcome to the new Golem Cloud Docs! 👋
Account

Account API

The account API allows users to query and manipulate their own account data.

Create a new account. The response is the created account data.

PathMethodProtected
/v1/accountsPOSTYes

Example Request JSON

{
  "name": "string",
  "email": "string"
}

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "revision": 0,
  "name": "string",
  "email": "string",
  "planId": "b3f60ba2-c1fd-4b3a-a23d-8e876e0ef75d",
  "roles": [
    "admin"
  ]
}

Retrieve an account for a given Account ID

PathMethodProtected
/v1/accounts/{account_id}GETYes

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "revision": 0,
  "name": "string",
  "email": "string",
  "planId": "b3f60ba2-c1fd-4b3a-a23d-8e876e0ef75d",
  "roles": [
    "admin"
  ]
}

Delete an account.

PathMethodProtected
/v1/accounts/{account_id}DELETEYes

Query Parameters

NameTypeRequiredDescription
current_revisionintegerYes-

Example Response JSON

{}

Update account

PathMethodProtected
/v1/accounts/{account_id}PATCHYes

Allows the user to change the account details such as name and email.

Changing the planId is not allowed and the request will be rejected. The response is the updated account data.

Example Request JSON

{
  "currentRevision": 0,
  "name": "string",
  "email": "string"
}

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "revision": 0,
  "name": "string",
  "email": "string",
  "planId": "b3f60ba2-c1fd-4b3a-a23d-8e876e0ef75d",
  "roles": [
    "admin"
  ]
}

Get an account's plan

PathMethodProtected
/v1/accounts/{account_id}/planGETYes

Example Response JSON

{
  "planId": "b3f60ba2-c1fd-4b3a-a23d-8e876e0ef75d",
  "name": "string",
  "appLimit": 0,
  "envLimit": 0,
  "componentLimit": 0,
  "workerConnectionLimit": 0,
  "storageLimit": 0,
  "monthlyGasLimit": 0,
  "monthlyUploadLimit": 0,
  "maxMemoryPerWorker": 0,
  "maxTableElementsPerWorker": 0,
  "maxDiskSpacePerWorker": 0,
  "perInvocationHttpCallLimit": 0,
  "perInvocationRpcCallLimit": 0,
  "monthlyHttpCallLimit": 0,
  "monthlyRpcCallLimit": 0,
  "maxConcurrentAgentsPerExecutor": 0,
  "oplogWritesPerSecond": 0
}

Set the plan of an account

PathMethodProtected
/v1/accounts/{account_id}/planPUTYes

Example Request JSON

{
  "currentRevision": 0,
  "plan": "c685f150-7cb7-436f-9700-386be171480b"
}

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "revision": 0,
  "name": "string",
  "email": "string",
  "planId": "b3f60ba2-c1fd-4b3a-a23d-8e876e0ef75d",
  "roles": [
    "admin"
  ]
}

Set the roles of an account

PathMethodProtected
/v1/accounts/{account_id}/rolesPUTYes

Example Request JSON

{
  "currentRevision": 0,
  "roles": [
    "admin"
  ]
}

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "revision": 0,
  "name": "string",
  "email": "string",
  "planId": "b3f60ba2-c1fd-4b3a-a23d-8e876e0ef75d",
  "roles": [
    "admin"
  ]
}

List all tokens of an account.

The format of each element is the same as the data object in the oauth2 endpoint's response.

PathMethodProtected
/v1/accounts/{account_id}/tokensGETYes

Example Response JSON

{
  "values": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
      "createdAt": "2019-08-24T14:15:22Z",
      "expiresAt": "2019-08-24T14:15:22Z"
    }
  ]
}

Create new token

PathMethodProtected
/v1/accounts/{account_id}/tokensPOSTYes

Creates a new token with a given expiration date. The response not only contains the token data but also the secret which can be passed as a bearer token to the Authorization header to the Golem Cloud REST API.

Example Request JSON

{
  "expiresAt": "2019-08-24T14:15:22Z"
}

Example Response JSON

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "secret": "stringstringstri",
  "accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
  "createdAt": "2019-08-24T14:15:22Z",
  "expiresAt": "2019-08-24T14:15:22Z"
}

Account API Errors

Status CodeDescriptionBody
400Invalid request, returning with a list of issues detected in the request{"code":"string","errors":["string"]}
401Unauthorized request{"code":"string","error":"string"}
403Forbidden Request{"code":"string","error":"string"}
404Entity not found{"code":"string","error":"string"}
409{"code":"string","error":"string"}
422Limits of the plan exceeded{"code":"string","error":"string"}
500Internal server error{"code":"string","error":"string"}