Field Definitions

Custom fields have unique identifiers (field_73, field_94, etc). The human-readable label and type of these fields can be found by reading the entity schema:

curl -k -u <username>:<password> https://YOUR-SUBDOMAIN.administrateapp.com/api/v2/meta/crm/accounts

Example response:

{
    "custom_fields": {
        "field_73": {
            "type": "string",
            "label": "Additional Address"
        },
        "field_71": {
            "type": "string",
            "label": "Account Manager's Notes"
        },
        "field_94": {
            "type": "boolean",
            "label": "Direct Debit"
        },
        "field_68": {
            "type": "integer",
            "label": "Our ID"
        }
    }
}