List carts created by the authenticated user.
Parameters
Output
Encoding
application/jsoncarts
array
Required
No description available.
cursor
string
Optional
Pagination cursor for next page
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": [
"carts"
],
"properties": {
"carts": {
"type": "array",
"items": {
"ref": "#cartResponse",
"type": "ref"
}
},
"cursor": {
"type": "string",
"maxLength": 512,
"description": "Pagination cursor for next page"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Results per page (1-100, default: 20)"
},
"cursor": {
"type": "string",
"maxLength": 512,
"description": "Pagination cursor"
},
"status": {
"enum": [
"open",
"completed",
"expired",
"abandoned"
],
"type": "string",
"maxLength": 64,
"description": "Filter by cart status"
},
"subject": {
"type": "string",
"format": "did",
"description": "Optional: only return carts whose items pay this recipient DID"
}
}
},
"description": "List carts created by the authenticated user."
}