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
Table of Contents |
---|
PROPERTIES
| The custom field sequential ID. 1, 2, 3… | int |
| Name of custom field. | string |
| Value of custom field. Null means no value is assigned. | string? |
...
Code Block |
---|
{ "id": 2, "title": "Category", "value": "Medical" } |
Another one:
Code Block |
---|
{
"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 Block |
---|
{
"id": 22,
"value": null
} |
Or, specify the custom field title
and value
:
Code Block |
---|
{
"title": "QA Issue",
"value": null
} |
Whatever is more convenient!