soapworkday-api

Workday SOAP API - Download event document


I'm using Launch Integration which produces a PDF. When I used Get Event Documents, I can see a reference to the PDF that's created (including the file name, type, WID, and Document_ID), but it does not include the file itself (in Base64).

I expected to receive a Base64 stream of the document that I can save as the file. Is there another API call I should be making instead to access the file stream?

Edit: I do not have access to Workday Studio, only the API endpoints.


Solution

  • We were able to achieve this by using the following REST API endpoint: {{base_url}}/ccx/cc-blobitory/{{tenant}}/{{DocumentID}}, where the DocumentID was formatted cloud/ABC...123. Hope this is useful for others!