GetListByIndexedId
Get a list of entities from the server base on indexed id.
Service | Operation |
---|---|
globalEntity | GET_LIST_BY_INDEXED_ID |
Method Parameters
Parameter | Description |
---|---|
entityIndexedId | The entity indexed Id. |
maxReturn | The maximum number of entities to return. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
// S2S call: to view example, switch to the Cloud Code or Raw tab.
var entityIndexedId = "the-indexed-id";
var maxReturn = 50;
var globalEntityProxy = bridge.getGlobalEntityServiceProxy();
var postResult = globalEntityProxy.getListByIndexedId(entityIndexedId, maxReturn);
if (postResult.status == 200) {
// Success!
}
{
"service": "globalEntity",
"operation": "GET_LIST_BY_INDEXED_ID",
"data": {
"entityIndexedId": "the-indexed-id",
"maxReturn": 50
}
}