Skip to main content

Retrieve URL File Uploads

The following query retrieves URL file uploads for a given test suite:

Operation: query GetTestSuiteURLFileUploads($testSuiteId: ObjectID!) { node(id: $testSuiteId) { ... on TestSuite { urlFileUploads(first: 100) { nodes { id fileName fileUrl status totalRows enabled errorMessage createdAt updatedAt } } } } }
GetTestSuiteURLFileUploadsTry in Explorer
GraphQL
query GetTestSuiteURLFileUploads($testSuiteId: ObjectID!) {
node(id: $testSuiteId) {
... on TestSuite {
urlFileUploads(first: 100) {
nodes {
id
fileName
fileUrl
status
totalRows
enabled
errorMessage
createdAt
updatedAt
}
}
}
}
}

This is useful for checking the processing status after uploading a file. Poll this query until the status changes from Draft or Processing to Processed (or Errored).