[SalesForce] Count of DataExtension Rows from API

Is there a way to get the count of data-extension rows without pulling and counting them? (from API)

I can't find a size property of the data-extension, but I assume this functionality is somehow possible, as the ET Dashboard does have the size's of all there data-extensions.

Thanks!

Best Answer

Unfortunately, no. Best work-around I've seen is to create a Query Activity that counts the rows of the Data Extension on some interval. Then you can simply retrieve the resulting data via API (DataExtensionObject).

EDIT:

An alternate method is outlined here, if you have Cloud Pages enabled.

Related Topic