-
Notifications
You must be signed in to change notification settings - Fork 0
timestreams.select_context_within_time_range XML RPC procedure
Timestreams is an API that provides functions to add and organise sensor data. This page describes the timestreams.select_context_within_time_range XML-RPC API procedure.
A POST request containing this procedure name will have returned context records within a given start and end timestamps.The following is the procedure call signature to retrieve context records by type and value:
<methodCall> <methodName>timestreams.select_context_within_time_range</methodName> <params> <param><value><string>User Name</string></value></param> <param><value><string>Password</string></value></param> <param><value><string>Start time</string></value></param> <param><value><string>End time</string></value></param> <param><value><string>Limit</string></value></param> <param><value><string>Offset</string></value></param> </params> </methodCall>
| Parameter | Description |
|---|---|
| User Name | Name of blog user |
| Password | Password of blog user |
| Start time (optional) | The time that a context record should start to hold from. If this value is omitted then all records that hold until the end time will be returned. |
| End time (optional) | The time that a context record should cease to hold from. If this value is omitted then all records that hold after the start time will be returned. |
| Limit | A positive integer value determining the number of records to return. |
| Offset | The offset of the first row to return. |