SOAP API - getDataViewDetails
The table summarizes the SOAP API - getDataViewDetails.
Request | Uses the GetDataViewDetailsRequest element (from the BusinessDataServices schema) |
Parameter notes |
* The multiplicity is the number of values required for the named parameter (ONE, TWO, or MANY). If omitted, assume ONE (as this is the case most of the time, the server does not return it so as not to clutter the response). If the condition uses the operators BETWEEN or NOT_BETWEEN, the multiplicity will be TWO (a BETWEEN condition has two values: the upper and lower bounds). For IN and NOT_IN operators, the multiplicity will be MANY. |
Response | Returns a GetDataViewDetailsResponse element (from the BusinessDataServices schema) |
Examples |
Retrieves the data view details for a data view called Car Pool Request:
<soapenv:Body> <api:GetDataViewDetailsRequest> <viewName>Car pool</viewName> </api:GetDataViewDetailsRequest> </soapenv:Body> |
Response:
<SOAP-ENV:Body> <GetDataViewDetailsResponse xmlns="http://api.bds.tibco.com"> <result xmlns=""> <viewID>4</viewID> <specification> <caseClassDetails> <caseClass>com.example.gddemo.Car</caseClass> <majorVersion>2</majorVersion> </caseClassDetails> <name>Car pool</name> <description>List of cars in the car pool</description> </specification> </result> </GetDataViewDetailsResponse> </SOAP-ENV:Body> |
|
Retrieves the data view details for all data views that are not in category Request:
<soapenv:Body> <api:GetDataViewDetailsRequest> <uncategorized/> </api:GetDataViewDetailsRequest> </soapenv:Body> </soapenv:Envelope> |
|
Response:
<SOAP-ENV:Body> <GetDataViewDetailsResponse xmlns="http://api.bds.tibco.com"> <result xmlns=""> <viewID>4</viewID> <specification> <caseClassDetails> <caseClass>com.example.gddemo.Car</caseClass> <majorVersion>2</majorVersion> </caseClassDetails> <name>Car pool</name> <description>List of cars in the car pool</description> </specification> </result> </GetDataViewDetailsResponse> </SOAP-ENV:Body> |
Copyright © Cloud Software Group, Inc. All rights reserved.