Lists ownership transfers visible to the authenticated caller as current holder, target, or Community administrator.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
transfers
array
Required
No description available.
Errors
AuthenticationRequired
InsufficientRole
InvalidCursor
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "InsufficientRole"
},
{
"name": "InvalidCursor"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"transfers"
],
"properties": {
"cursor": {
"type": "string"
},
"transfers": {
"type": "array",
"items": {
"ref": "com.getorbyt.community.defs#transferView",
"type": "ref"
},
"maxLength": 50
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"knownValues": [
"pending",
"accepted",
"completed",
"cancelled",
"expired"
]
},
"community": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Lists ownership transfers visible to the authenticated caller as current holder, target, or Community administrator."
}