GET /wallet HTTP/1.1
Host: api.wallet.example.com
Accept: */*
[
{
"id": "text",
"resourceUri": "text",
"name": "text",
"size": "text",
"metaData": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]POST /wallet HTTP/1.1
Host: api.wallet.example.com
Content-Type: multipart/form-data
Accept: */*
Content-Length: 31
{
"file": "binary",
"metadata": {}
}GET /wallet/{resourceID} HTTP/1.1
Host: api.wallet.example.com
Accept: */*
binaryPUT /wallet/{resourceID} HTTP/1.1
Host: api.wallet.example.com
Content-Type: application/octet-stream
Accept: */*
Content-Length: 8
"binary"DELETE /wallet/{resourceID} HTTP/1.1
Host: api.wallet.example.com
Accept: */*