Circular profile image at a fixed size.
Input
Encoding
application/jsondid
stringdid
Optional
DID of the blob owner. Used to resolve blob URLs.
size
string
Optional
Size token.
maxLength: 32 bytessrc
unknown
Required
Blob ref for the image.
Output
Encoding
application/jsonSchemaat.inlay.defs#response
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"src"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the blob owner. Used to resolve blob URLs."
},
"src": {
"type": "unknown",
"description": "Blob ref for the image."
},
"size": {
"type": "string",
"default": "medium",
"maxLength": 32,
"description": "Size token.",
"knownValues": [
"xsmall",
"small",
"medium",
"large"
]
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"ref": "at.inlay.defs#response",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Circular profile image at a fixed size."
}