| Requires any of the roles: | Client, Admin, Partner |
| GET | /scadmeta/tables/{TablesId}/pkeys | Gets table primary keys id |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*
open class GetTablePrimaryKeysRequest
{
/**
* Table id
*/
@ApiMember(Description="Table id", IsRequired=true)
open var TablesId:Int? = null
/**
* Parameter list
*/
@ApiMember(Description="Parameter list")
open var ParameterList:HashMap<String,Object>? = null
/**
* Filter list
*/
@ApiMember(Description="Filter list")
open var FilterList:HashMap<String,Object>? = null
/**
* Number of items to be returned per page
*/
@ApiMember(Description="Number of items to be returned per page")
open var Paging:Paging? = null
open var FromId:Int? = null
/**
* Drill down filter list
*/
@ApiMember(Description="Drill down filter list")
open var DrillDownFilterList:HashMap<String,Object>? = null
/**
* Global parameter list
*/
@ApiMember(Description="Global parameter list")
open var GlobalParamList:HashMap<String,Object>? = null
/**
* View id
*/
@ApiMember(Description="View id")
open var ViewId:Int? = null
/**
* Whether or not to refresh the cache
*/
@ApiMember(Description="Whether or not to refresh the cache")
open var RefreshCache:Boolean? = null
}
open class Paging
{
open var PageNumber:Int? = null
open var PageSize:Int? = null
}
Kotlin GetTablePrimaryKeysRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /scadmeta/tables/{TablesId}/pkeys HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <anyType /> </ArrayOfanyType>