Get an actor's moderation state, profile, roles, and labels.
Parameters
Output
Encoding
application/jsonaccessStatus
string
Required
No description available.
accountLabels
array
Required
No description available.
avatarCid
string
Optional
No description available.
bannerCid
string
Optional
No description available.
description
string
Optional
No description available.
did
stringdid
Required
A decentralized identifier (DID).
displayName
string
Optional
No description available.
envAdmin
boolean
Required
No description available.
firstSeenAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
handle
string
Optional
No description available.
indexedAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
resyncStatus
string
Optional
No description available.
roles
array
Required
No description available.
takedown
boolean
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": [
"did",
"accessStatus",
"takedown",
"roles",
"envAdmin",
"accountLabels"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"roles": {
"type": "array",
"items": {
"type": "string"
}
},
"handle": {
"type": "string"
},
"envAdmin": {
"type": "boolean"
},
"takedown": {
"type": "boolean"
},
"avatarCid": {
"type": "string"
},
"bannerCid": {
"type": "string"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string"
},
"displayName": {
"type": "string"
},
"firstSeenAt": {
"type": "string",
"format": "datetime"
},
"accessStatus": {
"enum": [
"active",
"suspended",
"data_deleted"
],
"type": "string"
},
"resyncStatus": {
"type": "string"
},
"accountLabels": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
}
},
"description": "Get an actor's moderation state, profile, roles, and labels."
}