GetDataSourceSchemaColumns()
Used to get the datasource schema information from the latest transaction.
Syntax
DataSourceSchemaResponse GetDataSourceSchemaColumns()
Inputs: DataSourceSchemaRequest
DataSourceSchemaRequest Structure
Properties | Attribute Type | Description |
---|---|---|
APIKeyHeader: string | Message Header | A value used to authorize the access of this web function. |
SourceId: string | Message Body Member | The ID of datasource to retrieve schema. |
Outputs: DataSourceSchemaResponse
DataSourceSchemaResponse 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 datasource schema was successfully retrieved, otherwise returns an error code. |
Columns: Array of IDataSourceSchema | Message Body Member | Array of datasource schema. |
Back to top