OBJECT
ExportRequest
link GraphQL Schema definition
1 type ExportRequest { 2 3 #   The unique ID of this export request 4 : ID!  5 6 #   Current status of this export request 7 : ExportRequestStatus!  8 9 #   ID of the organization this export request was issued for 10 : ID!  11 12 #   Date/time at which this export request was created 13 : DateTime!  14 15 #   Date/time at which this export request was last modified 16 : DateTime!  17 18 #   ID of the user or API key that created this export request 19 : 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. 25 (: String): String  26 27 } 
link Required by
- ExportRequestList
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.