Imports data into an already existing DataSet in your Domo instance.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the DataSet to import the data into
Specifies how the data import should update the DataSet.
Defaults to REPLACE if not specified.
If set to APPEND, the schema must match the existing schema.
Case-sensitive; must be uppercase. Falls back to REPLACE if given an invalid value.
REPLACE, APPEND An array of JSON objects which will be converted to CSV and stored as data.
If you want to pass CSV directly, use the DataSet API.
If appending, the schema must match the existing schema. To omit a field, specify the key but use an empty string or null for the value (see Example 2).
If replacing, some objects can be missing properties that others have, resulting in empty fields (see Example 3).
If your objects contain array values, they will appear as "List" in the DataSet. Consider converting them to properties or, alternatively, you can leverage one of Domo's many JSON connectors to more flexibly deal with arrays.
Success! Returns an empty response body.