OBJECT

ExportRequest

link GraphQL Schema definition

1type ExportRequest {
2
3# The unique ID of this export request
4id: ID!
5
6# Current status of this export request
7status: ExportRequestStatus!
8
9# ID of the organization this export request was issued for
10organizationId: ID!
11
12# Date/time at which this export request was created
13createdDateTime: DateTime!
14
15# Date/time at which this export request was last modified
16modifiedDateTime: DateTime!
17
18# ID of the user or API key that created this export request
19requestorId: ID!
20
21# The signed URI to the object that contains, or will contain,
22# export results.
23# An optional file name for the resulting asset object.
24# The extension of the file name may affect how some clients download the file.
25assetUri(fileName: String): String
26
27}