Get History
GET/v1/history/sandbox/:sandbox_id/session-template
Get History for sandbox
Requires any of permissions: sandbox:config:view, sandbox:config:edit
Request
Path Parameters
sandbox_id uuidrequired
Sandbox ID
Query Parameters
resource_id uuid
ID to filter by
cursor Cursor
Possible values: non-empty and <= 128 characters
Default value: 0
Cursor to designate where you are in iterating through values. Start with '0', and pass this on subsequent calls to continue iteration
page_size Page Size
Possible values: >= 1 and <= 10000
Default value: 50
The maximum number of elements to be returned per call
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
transactions
object[]
required
account_id Account Id (string)required
transaction_id Transaction Id (string)required
issued_at date-timerequired
operation Operation (string)required
version_id Version Id (string)required
version_name Version Name (string)
version Version
page_meta
object
required
cursor Cursor (string)
page_size Page Size (integer)
Default value: 10
total Total (integer)
Default value: 0
{
"transactions": [
{
"account_id": "string",
"transaction_id": "string",
"issued_at": "2024-07-29T15:51:28.071Z",
"operation": "string",
"version_id": "string",
"version_name": "string"
}
],
"page_meta": {
"cursor": "string",
"page_size": 10,
"total": 0
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...