For the complete documentation index, see llms.txt. This page is also available as Markdown.

fetchSbomImportFile

Examples

query FetchSbomImportFile($requestId: String!) {
  fetchSbomImportFile(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 FetchSbomImportFile($requestId: String!) { fetchSbomImportFile(requestId: $requestId) { downloadLink isFileReady error } }",
 "variables": {
    "requestId": "example"
  }
}'

Arguments

You can use the following argument(s) to customize your fetchSbomImportFile query.

Argument
Description
Supported fields

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 fetchSbomImportFile query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

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