Can we schedule(daily) a report request with DataWareHouse API's ? | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jennifer_Dungan

The schedule would need to be created in your own system. We have/had (not sure if it's still running) a scheduled job with the APIs that ran every hour or two.... The thing is, yes, the API makes new requests each time. From what I remember, your code will need to do the following:

 

  1. Make the request
  2. Store the returned request id
  3. Check back for that request id to be processed (may need to check multiple times until its ready)
  4. Retrieve the data from the request id

1 reply

Jennifer_Dungan
Community Advisor and Adobe Champion
Jennifer_DunganCommunity Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
August 17, 2022

The schedule would need to be created in your own system. We have/had (not sure if it's still running) a scheduled job with the APIs that ran every hour or two.... The thing is, yes, the API makes new requests each time. From what I remember, your code will need to do the following:

 

  1. Make the request
  2. Store the returned request id
  3. Check back for that request id to be processed (may need to check multiple times until its ready)
  4. Retrieve the data from the request id