GET
/
account
/
{accountId}
Get information for a specific account by ID
curl --request GET \
  --url https://api.profilebehavior.com/v3/account/{accountId} \
  --header 'Authorization: <api-key>'
{
  "code": 200,
  "data": {
    "id": "60e9ca73c500a9001534ad84",
    "createdAt": "2025-01-01T14:42:52.329Z",
    "updatedAt": "2025-01-01T14:42:52.329Z",
    "name": "Aperture Science",
    "type": "Corporate",
    "credits": 100,
    "preferences": {
      "isEcoPrintingEnabled": true,
      "isCoreExtendedEnabled": false
    }
  },
  "status": "success"
}

Authorizations

Authorization
string
header
required

Custom HMAC authentication header.

Format: public:signature:nonce:timestamp

Path Parameters

accountId
string<string>
required

ID of the Account to retrieve

Response

Success

Standard response object for successful single-resource requests in the Profile Behavior API. Contains an HTTP status code, the returned resource data, and a status indicator.