Skip to content

Account

Method get.account
Description Retrieves account information
Available to Customer

Request parameters

Name Type Required Description
access_token string yes Authentication session key

Response parameters

Name Type Valid values Filtering Sorting Description
app_id number Customer account ID
name string Customer name
timezone string IANA zone identifier Account current time zone

Example request

{
  "jsonrpc":"2.0",
  "id":"number",
  "method":"get.account",
  "params":{
    "access_token":"string"
  }
}

Example response

{
  "jsonrpc": "2.0",
  "id": "number",
  "result": {
    "meta_data": {},
    "data": [
      {
        "app_id": "number",
        "name": "string",
        "timezone": "string"
      }
    ]
  }
}

List of returned errors

See the section "List of errors for get methods".