FileStreamDownloadResponse ExportData()
Used to export the imported data of a specific datasource.
Inputs: FileStreamDownloadRequest
FileStreamDownloadRequest Structure
Properties | Attribute Type | Description |
---|---|---|
APIKeyHeader: string | Message Header | A value used to authorize the access of this web function. |
DataSourceId: string | Message Body Member | The ID of datasource. |
DataSourceType: string | Message Body Member | Datasource type (user, object, relation, or field filter). |
DataSourceFields: List | Message Body Member | The list of fields in the datasource to export. |
Outputs: FileStreamDownloadResponse
FileStreamDownloadResponse Structure
Properties | Attribute Type | Description |
---|---|---|
APIKeyHeader: string | Message Header | A value that indicates whether the API key is valid. |
Length : long | Message Header | The size of the file to export. |
FileByteStream: stream | Message Body Member | The data stream of the file being exported. |
Back to top