index

setAccount JSON


Instructions

Post JSON data here to modify an account.

See here for information about using the JSON API.

The JSON data is similar to that returned by getAccount. See it for information about the data fields.

Not all fields can be modified.

It is not necessary to include all data fields. Only include the fields that are being changed.

Example Data

Modify Account

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings"
    },
    "setAccount": {
        "action": "modify",
        "subaccounts": {
            "1234": {
                "action": "modify",
                "enabled": 1,
                "role": 0,
                "notes": "this is a private note",
                "message": "this is displayed to the sub account"
            }
        }
    }
}