Skip to main content
POST
/
account
/
info
Get account detail
curl --request POST \
  --url 'https://api.flashcat.cloud/account/info?app_key=' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "error_code": 0,
  "data": {
    "account_id": 1001,
    "account_name": "acme",
    "domain": "acme",
    "extra_domains": [
      "acme-corp"
    ],
    "phone": "138****8000",
    "country_code": "86",
    "email": "ops@acme.example",
    "avatar": "https://cdn.flashcat.cloud/avatar/acme.png",
    "locale": "zh-CN",
    "time_zone": "Asia/Shanghai",
    "created_at": 1716960000,
    "restrictions": {
      "ips": [
        "203.0.113.0/24"
      ],
      "email_domains": [
        "acme.example"
      ],
      "allow_subdomain": true
    }
  }
}
PermissionDescription
NoneNone — any valid app_key can call this operation.
Find this operation in the Platform API reference.

Authorizations

app_key
string
query
required

App key issued from the Flashduty console under Account → APP Keys. Required on every public API call. Keep it secret — it grants the same access as the owning account.

Body

application/json

The body is of type object.

Response

OK

The response is of type any.