Get profile configuration for a user
Parameters
Output
application/jsondid
string
Required
DID of the user
featuredCollectionUri
string
Optional
AT-URI of the featured collection
profileType
string
Required
Profile type identifier
sections
array
Required
Profile display sections
uri
string
Optional
AT-URI of the profile config record
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",
"profileType",
"sections"
],
"properties": {
"did": {
"type": "string",
"description": "DID of the user"
},
"uri": {
"type": "string",
"description": "AT-URI of the profile config record"
},
"sections": {
"type": "array",
"items": {
"ref": "#profileSectionView",
"type": "ref"
},
"description": "Profile display sections"
},
"profileType": {
"type": "string",
"description": "Profile type identifier"
},
"featuredCollectionUri": {
"type": "string",
"description": "AT-URI of the featured collection"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"description": "DID of the user"
}
}
},
"description": "Get profile configuration for a user"
}