GetAllAccountConfigs

Category: System Permissions: Operator Call Type: Synchronous

Retrieves a list of Key/Value pairs of a key across all Accounts

Request

{
    "key": "Config1",
}
KeyValue

key

string. The key to retrieve from all accounts.

Response

[
    {
        "AccountId": 0,
        "Key": "Config1",
        "Value": "Config1Val",
    },
]

The Response is an array of positions for the account by product.

KeyValue

accountId

integer. The ID of the account that holds this config.

key

string. The key of the account config.

value

string. The value of the account config.

Last updated