Get the Render Job to show in the UI
All render jobs have a unique hash, which is constructed by sha256([...projectIds, audioName].join('-'))
function. This provides a deterministic parameter by which you can identify identical render jobs.
You need to make a POST request to get this parameter. See more info at reference.
Once you have this hash, you can make a GET request to find all jobs. The jobs are always returned in descending order by updatedAt
.
So if the first returned job is not in final status, you can take it to display in the UI.