Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

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

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:

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

Another one:

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

  • No labels