HomeGuidesAPI ReferenceChangelog
Log In
API Reference

Get Account Properties

Return a single account using the Arcadia {accountId} value.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Retrieve all properties associated with an account using the Arcadia-generated accountId.

Use this endpoint to inspect account-specific values used by calculations and tariff applicability checks, such as customerClass, building attributes, location details, and tariff-specific options.

Resource URI

GET /rest/v1/accounts/{accountId}/properties

Path parameters

ParameterTypeDescription
accountIdStringArcadia UUID of the Account object. Required.

Response data

The response returns PropertyData objects. Common fields include:

FieldDescription
keyNameUnique property key, such as customerClass.
displayNameUser-friendly property label.
descriptionDescription of what the property represents.
dataTypeData type, such as CHOICE, BOOLEAN, INTEGER, or DECIMAL.
choicesPossible values for CHOICE or LOOKUP properties.
dataValueValue stored on the account.

For the full account property data model, account property workflow, and detailed examples, see Account Properties API.

Example

GET /rest/v1/accounts/9a6035d8-94cd-4d66-8a94-eac573fec42e/properties

A successful response returns a standard response payload with type set to PropertyData and results containing the account's properties.

{
  "status": "success",
  "count": 1,
  "type": "PropertyData",
  "results": [
    {
      "keyName": "customerClass",
      "displayName": "Customer Class",
      "dataType": "CHOICE",
      "dataValue": "1"
    }
  ]
}
Path Params
string
required

This is the Arcadia UUID of the Account object.

Responses

Language
Credentials
Basic
base64
:
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json