Fetch a player's profile as the appview has it indexed.
Parameters
Output
Encoding
application/jsonrecords
array
Required
The player's profile, or empty if they haven't written one.
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": [
"records"
],
"properties": {
"records": {
"type": "array",
"items": {
"ref": "games.atplay.player.profile",
"type": "ref"
},
"description": "The player's profile, or empty if they haven't written one."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "Whose profile to fetch."
}
}
},
"description": "Fetch a player's profile as the appview has it indexed."
}