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"
}

Arguments

You can use the following argument(s) to customize your fetchThirdPartyIssuesFile 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 fetchThirdPartyIssuesFile 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