Get a push token's detail and bound actors.
Parameters
Output
Encoding
application/jsonactors
array
Required
No description available.
token
object
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"token",
"actors"
],
"properties": {
"token": {
"type": "object",
"required": [
"token",
"platform",
"firstRegisteredAt",
"latestRegisteredAt",
"accountCount"
],
"properties": {
"token": {
"type": "string"
},
"platform": {
"type": "string"
},
"accountCount": {
"type": "integer"
},
"firstRegisteredAt": {
"type": "string",
"format": "datetime"
},
"latestRegisteredAt": {
"type": "string",
"format": "datetime"
}
}
},
"actors": {
"type": "array",
"items": {
"type": "object",
"required": [
"did",
"platform",
"registeredAt"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"handle": {
"type": "string"
},
"platform": {
"type": "string"
},
"avatarCid": {
"type": "string"
},
"displayName": {
"type": "string"
},
"registeredAt": {
"type": "string",
"format": "datetime"
}
}
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"token"
],
"properties": {
"token": {
"type": "string"
}
}
},
"description": "Get a push token's detail and bound actors."
}