You can create records through both the object-based and view-based APIs by sending a JSON payload of your record in a POST request to the appropriate route.
One Record Per RequestNote that at this time, only one record can be inserted in a single request. For multiple insertions, your code will need to iterate over a collection of data and make a POST request for each. See our tip on making requests which do not count against your rate limits here.
Delay API Calls to Ensure Calculation CompletionWhen making API calls that modify a single record or related connected records, add a delay of at least 1 second between calls. Depending on your app's complexity, you may need to increase this time.
This ensures calculations complete before the next update operation begins. Without the delay, operations run in parallel and can produce incorrect results.

