[SalesForce] Data Extension API: How to add record in data extension with no primary key via API call

I have a data extension which do not have any primary key. I need to add new records via API to that data extension. How can I achieve that?

Best Answer

As far as I know you can't add a record to a data extension without a primary key via the REST API. To get around this you could set a primary key on the data extension and just generate a unique key in the code that sends the data via API.

Related Topic