Apache Geode
  
    CHANGELOG
  
        
  GET /geode/v1/{region}/keys
List all keys for the specified region.
Resource URL
http://<hostname_or_http-service-bind-address>:<http-service-port>/geode/v1/{region}/{keys}
Parameters
None.
Example Request
GET /geode/v1/orders/keys
Example Success Response
Response Payload: application/json
200 OK
Server: Apache-Coyote/1.1
Location: http://localhost:8080/geode/v1/orders/keys
Content-Type: application/json
Transfer-Encoding: chunked
Date: Sat, 18 Jan 2014 21:20:05 GMT
{    "keys": [
        "1",
        "2",
        "3"
    ]
}
Error Codes
| Status Codes | Description | 
|---|---|
| 404 NOT FOUND | Specified region does not exist. | 
| 405 METHOD NOT ALLOWED | Returned if any HTTP request method other than GET (for example, POST, PUT, DELETE, etc.) is used. | 
| 500 INTERNAL SERVER ERROR | Error encountered at Geode server. Check the HTTP response body for a stack trace of the exception. |