SetAtomicFields
- 1 Minute to read
- Print
- DarkLight
- PDF
SetAtomicFields
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Flags specified fields as being atomic
Key | Value(s) | Description |
---|---|---|
method | "SetAtomicFields" | Flags specified fields as being atomic |
fields[] | [ "table.field1" "table.field2" "..." ] | List of full names of fields to be set as atomic. |
template | "templatename" | Name of template containing fields to set. |
table | "tablename" | Name of table to set as atomic. |
Only one of template, table or fields can be included.
{
"method": "SetAtomicFields",
"template": "sales_imported_to_atomic",
"project": "SDJ-DJDemo2023",
"description": "Set atomic fields using a template"
}
{
"method": "SetAtomicFields",
"fields": [
"customer.first order",
"customer.recency"
],
"description": "Set atomic fields using a field list",
"project": "SDJ-DJDemo2023"
}
{
"method": "SetAtomicFields",
"table": "sales",
"project": "SDJ-DJDemo2023",
"description": "Set atomic fields for a whole table"
}
Was this article helpful?