Skip to content

Getting information about account

Method get.account
Description Getting information about account
Who has access Client

Parameters of a request

Title Type Required Description
access_token string yes Authentication session key

Parameters of a reply

Title Type Valid value Filtering Sorting Description
app_id number Account unique ID
name string Client's name
timezone string Format IANA zoneinfo Current time zone of an account

JSON request structure

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

JSON reply structure

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

List of returning errors

Refer to section "List of errors in methods with the verb get"