To successfully export subscription data using theaccounts.searchAPI, you must query the correct table. ThesubscriptionAccountstable contains subscription-related data for users.
Option A: Incorrect.SELECT FROM subscriptionsis invalid because thesubscriptionstable does not exist in the context of theaccounts.searchAPI.
Option B: Correct.SELECT * FROM subscriptionAccountsqueries thesubscriptionAccountstable, which stores subscription data for users.
Option C: Incorrect.SELECT * FROM lite Accountsis invalid syntax and does not target the correct table for subscription data.
Option D: Incorrect.SELECT FROM emailAccountsis invalid because theemailAccountstable does not exist in the context of theaccounts.searchAPI.
References:
SAP Customer Data Cloud - accounts.search API
Subscription Data Export
1
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit