fetchThirdPartyIssuesFile
Examples
query FetchThirdPartyIssuesFile($requestId: String!) {
fetchThirdPartyIssuesFile(requestId: $requestId) {
downloadLink
isFileReady
error
}
}Variables
This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.
{
"requestId": "example"
}curl -X POST \
https://api.cloud.ox.security/api/apollo-gateway \
-H 'Content-Type: application/json' \
-H 'Authorization: YOUR_API_TOKEN' \
-d '{
"query": "query FetchThirdPartyIssuesFile($requestId: String!) { fetchThirdPartyIssuesFile(requestId: $requestId) { downloadLink isFileReady error } }",
"variables": {
"requestId": "example"
}
}'Arguments
You can use the following argument(s) to customize your fetchThirdPartyIssuesFile query.
requestId String! required
Unique identifier of the file request to check status for
Fields
Return type: FetchReadyFileResponse!
You can use the following field(s) to specify what information your fetchThirdPartyIssuesFile query will return. Please note that some fields may have their own subfields.
downloadLink String
Pre-signed URL for downloading the file. Will be null if the file is not ready or there was an error
isFileReady Boolean!
Indicates whether the requested file is ready for download
error Boolean
Indicates whether an error occurred while checking file status
Last updated
