Get timeline of all available events of an account. This includes moderation events, account history and did history.
Parameters
Output
Encoding
application/jsontimeline
array
Required
No description available.
Errors
RepoNotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "RepoNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"timeline"
],
"properties": {
"timeline": {
"type": "array",
"items": {
"ref": "#timelineItem",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
}
},
"description": "Get timeline of all available events of an account. This includes moderation events, account history and did history."
}