Skip to main content

Custom Field Record

Represents a custom field. This can be a field of an invoice, a company, a project, a job etc. Contained in Custom Field Collection Record

Learn more how custom fields are configured in the platform: Custom field configuration

PROPERTIES

id

The custom field sequential ID. 1, 2, 3…

int

title

Name of custom field.

string

value

Value of custom field. Null means no value is assigned.

string?

EXAMPLES

Example payload:

CODE
{
    "id": 2,
    "title": "Category",
    "value": "Medical"
}

Another one:

CODE
{
    "id": 22,
    "title": "QA Issue",
    "value": null
}

INSERTING AND UPDATING

When inserting or updating custom fields, you have two options:

Either, specify the id and your value :

CODE
{
    "id": 22,
    "value": null
}

Or, specify the custom field title and value :

CODE
{
    "title": "QA Issue",
    "value": null
}

Whatever is more convenient!

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.