SysListIndexes
Retrieves list of indexes configured for a custom entity collection.
Service | Operation |
---|---|
customEntity | SYS_LIST_INDEXES |
Method Parameters
Parameter | Description |
---|---|
entityType | The entity type identifying the applicable custom entity collection. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
var entityType = "athletes";
var customEntityProxy = bridge.getCustomEntityServiceProxy();
var postResult = customEntityProxy.sysListIndexes(entityType);
if (postResult.status == 200) {
// Success!
}
{
"service": "customEntity",
"operation": "SYS_LIST_INDEXES",
"data": {
"entityType": "athletes"
}
}