How to append data to an existing dataset using the API?

Currently update dataset API replaces the existing data with the new data. Is there a way to just append the data instead of replacing?

Best Answer

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    You should be able to pass in the updateMethod=APPEND as a url parameter to the api endpoint.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    You should be able to pass in the updateMethod=APPEND as a url parameter to the api endpoint.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Thanks. updateMethod query param solved my problem.