DACS WebServices unable to find startDate Parameters

ron.bove01
ron.bove01 LSEG
edited June 4 in DACS Station

I am trying to run the getDacsRawUsageContents using DACS WebServices using Python, and one of the Elements is startDate. I created the startDate object but I don't see a Data Type for startDate in the WebServices Developers guide. How do I actually set the startDate.

_date = client.factory.create('startDate')

Best Answer

Answers

  • Yes, that worked, thanks.

    startDate = date(2025,6,1)
    endDate = date(2025,7,1)

    _dacsRawUsageContentsResult = client.service.getDacsRawUsageContents(_dl, _ds, startDate, endDate)
    print (_dacsRawUsageContentsResult)