BaseResponse ExecuteDataStreamImport()
Used to transfer data to the web service when data is wrapped in a data stream.
Inputs: DataStreamTransferRequest
DataStreamTransferRequest Structure
Properties | Attribute type | Description |
---|---|---|
APIKeyHeader: string | Message Header | A value used to authorize the access of this web function. |
TransactionID: string | Message Header | A value that indicates the current transaction. |
IncrementalImport: bool | Message Header | A true or false value indicates whether this request is an incremental import to previous requests. This is used when client import large data. Therefore, the data has to be break into small chunks. |
Data: Stream (Memory Stream) | Message Member | The actual data. |
ColumnName: string [] | Message Header | The column names of the actual data. |
ColumnType: string [] | Message Header | The types of each data column. |
Outputs: BaseResponse
BaseResponse Structure
Properties | Attribute type | Description |
---|---|---|
APIKeyHeader: string | Message Header | A value that indicates whether the API key is valid. |
Message: string | Message Header | Returns 'Success' if the data transfer was successful, otherwise returns an error code. |
Back to top