Get a signed url for a specified history item
/v1/get_published_file/?submission_id=1&published_files_history_id=7&is_warning=true
submission_id
: (required, integer) the submission IDpublished_files_history_id
: (required, integer) thepublished_files_history_id
of the file (obtained through list_history)is_warning
: (boolean) whether the file being obtained is a warning file or the file that was published. True = warning file. Default is False
{
"url": "https://........",
}
url
: (string) the url to the published file
Possible HTTP Status Codes:
- 400:
- invalid
published_files_history_id
- Missing required parameter
- User doesn't have permissions for this agency
published_files_history_id
does not match thesubmission_id
provided- The file type requested (warning or non-warning) doesn't exist for the requested ID
- invalid