Retrieve a list of historic values for the specified entity id/ids.
POSThttps://app.testiny.io/api/v1/history/entity/:entity
Retrieves a list of historic values for entities specified with the given id value. The entity type needs to support history tracking.
Request
Path Parameters
- application/json
Body
required
Responses
- 200
- 4XX
- 5XX
Returns 'EntityHistoryResult'
- application/json
- Schema
- Example (from schema)
Schema
Timestamp of first history entry
Timestamp of last history entry
data
object[]
required
{
"from": "2024-07-29T15:51:28.071Z",
"to": "2024-07-29T15:51:28.071Z",
"data": [
{
"id": 0,
"values": [
{}
]
}
]
}
The request failed because invalid request parameters or data were supplied or access was denied.
- application/json
- Schema
- Example (from schema)
Schema
The error code describing the general error category.
API_INVALID_INPUT_DATA
The HTTP status code.
The actual error message describing the error in more detail.
The request id for following up on specific errors.
{
"code": "API_INVALID_INPUT_DATA",
"status": 0,
"message": "string",
"reqid": "string"
}
The request failed because an error occurred during processing of the request.
- application/json
- Schema
- Example (from schema)
Schema
The error code describing the general error category.
API_INVALID_INPUT_DATA
The HTTP status code.
The actual error message describing the error in more detail.
The request id for following up on specific errors.
{
"code": "API_INVALID_INPUT_DATA",
"status": 0,
"message": "string",
"reqid": "string"
}
Authorization: X-Api-Key
name: X-Api-Keytype: apiKeyin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://app.testiny.io/api/v1/history/entity/:entity");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-Api-Key", "<API_KEY_VALUE>");
var content = new StringContent("{\n \"id\": 0,\n \"ids\": [\n 0\n ]\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());