GetUserConfig

Category: System Permissions: Operator, Trading Call Type: Synchronous

Returns an array of configuration key-value pairs for the specified user. Via Configuration this will return redacted values to minimize PII exposure. The array of key-value pairs is variable in number, as required by the Exchange. The value of both Key and Value KVPs are strings.

You can set the array of configuration pairs using SetUserConfig.

Request

{
    "userId": 0,
    "userName": ""
}
KeyValue

userId

integer. The ID of the user whose configuration key-value pairs you want to return.

userName

string. The user name of the user whose configuration key-value pairs you want to return.

Response

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

The Response returns an array of a variable number of elements, depending on the needs of the Exchange.

KeyValue

Key

string. The name of the key part of the key-value pair.

Value

string. The value part of the key-value pair. The value must be a string.

Last updated