List the ephemeral accounts minted by the calling account.
Parameters
Output
Encoding
application/jsonaccounts
array
Required
No description available.
cursor
string
Optional
No description available.
maxLifetimeDays
integer
Optional
How far any of the caller's accounts may be extended, in days from its creation, after any per-person override. Clients should render ceilings from this rather than from a server-wide default.
quota
object
Optional
How much of the caller's allowance is in use.
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": [
"accounts"
],
"properties": {
"quota": {
"type": "object",
"required": [
"used",
"limit"
],
"properties": {
"used": {
"type": "integer"
},
"limit": {
"type": "integer"
}
},
"description": "How much of the caller's allowance is in use."
},
"cursor": {
"type": "string"
},
"accounts": {
"type": "array",
"items": {
"ref": "rip.pds.account.defs#accountView",
"type": "ref"
}
},
"maxLifetimeDays": {
"type": "integer",
"description": "How far any of the caller's accounts may be extended, in days from its creation, after any per-person override. Clients should render ceilings from this rather than from a server-wide default."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"includeDeleted": {
"type": "boolean",
"default": false,
"description": "Include accounts that have already expired or been deleted."
}
}
},
"description": "List the ephemeral accounts minted by the calling account."
}