index

setInvoicees JSON


Instructions

Post JSON data here to modify an invoicee in an account.

See here for information about using the JSON API.

The JSON data is an array of invoicees similar to that returned by getInvoicees. See it for information about the data fields.

A maximum of 100 invoicees can be modified per call

It is not necessary to send unchanged fields when modifying an invoicee, it is only required to include the invoicee id and the fields which have changed.

Example Data

Modify Invoicee

{
    "authentication": {
        "apiKey": "apiKeyAsSetInAccountSettings"
    },
    "invoicees": [
        {
            "id": "1234",
            "enable": "1"
        }
    ]
}