tuli
05/07/2025, 4:01 PMCeligo AI
05/07/2025, 4:01 PMAI generated answer (using internal Slack threads):To create a custom record
customrecord_abc
using NetSuite REST Web Services API, you would need to make a POST request to the /record/v1/customRecordType/{customrecord_abc}
endpoint.
Here is a sample JSON payload for the POST request:
json
{
"customFieldList": [
{
"value": "Sample Value",
"scriptId": "custrecord_sample_field"
}
]
}
In the above JSON, custrecord_sample_field
is the scriptId of the custom field in the custom record customrecord_abc
and Sample Value
is the value you want to set for that field.
Please replace {customrecord_abc}
with the actual ID of your custom record.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
05/07/2025, 4:01 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.850186706
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.841301501
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.84064
Celigo AI
05/07/2025, 4:01 PM