Memo Service
Set Memo Attachments
SetMemoAttachments sets attachments for a memo.
Path Parameters
memo*string
The memo id.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PATCH "https://example.com/api/v1/memos/string/attachments" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "attachments": [ { "filename": "string", "type": "string" } ] }'Empty
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}