List Operation
Returns a paginated list of all operations, ongoing and completed.
Query Parameters
Optional pagination token for retrieving further results from a known state. List params should not change between consecutive paginated requests (limit is an exception).
Optional limit to the number of operations returned. If not specified, the max (100) operations are returned.
Possible values: [PENDING
, COMPLETED
, FAILED
]
If set, filters the returned operations to include only those in the given state.
Possible values: [DELETE_USER
, SEARCH_EXPORT
, DELETE_SESSION
, DELETE_SEGMENT_SESSIONS
, DELETE_SEGMENT_USERS
]
If set, filters the returned operations to include only those with the given type.
A successful response.
Schema
operations object[] optional
If present, this pagination token can be supplied in a subsequent request to get the next batch of results. If not present, there are no further results.
{
"nextPaginationToken": "fbvcfghgfrw",
"operations": [
{
"id": "YnVsa3k6NTc0OTU2MzMzMTcwNjg4MA==",
"type": "DELETE_USER",
"details": null,
"results": null,
"state": "PENDING",
"errorDetails": "",
"createdAt": "2018-04-19T22:40:52.174736Z",
"finishedAt": "2018-04-19T22:40:54.473657Z",
"estimatePctComplete": 10
}
]
}
GET /operations/v1
Authorization: ApiKeyAuth
name: Authorizationin: headertype: apiKey
https://api.fullstory.com/operations/v1
- cURL
- Python
- Go
- Javascript
curl -L -X GET 'https://api.fullstory.com/operations/v1' \
-H 'Accept: application/json' \
-H 'Authorization: Basic <API_KEY_VALUE>'
curl -L -X GET 'https://api.fullstory.com/operations/v1' \
-H 'Accept: application/json' \
-H 'Authorization: Basic <API_KEY_VALUE>'
curl -L -X GET 'https://api.fullstory.com/operations/v1' \
-H 'Accept: application/json' \
-H 'Authorization: Basic <API_KEY_VALUE>'
curl -L -X GET 'https://api.fullstory.com/operations/v1' \
-H 'Accept: application/json' \
-H 'Authorization: Basic <API_KEY_VALUE>'