Create an attachment to a wire transfer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.api.memo.bank/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Memo Bank API MCP server": {
  "url": "https://docs.api.memo.bank/mcp"
}
Close
POST /v2/wire_transfers/{id}/attachments

This operation allows you to upload and attach a document to a wire transfer when its status is pending_attachment_required.

Scope: wire-transfers:write

Path parameters

  • id string(uuid) Required

    ID of the wire transfer.

multipart/form-data

Body

  • document string(binary) Required

Responses

  • 201

    Created

POST /v2/wire_transfers/{id}/attachments
curl \
 --request POST 'https://api.memo.bank/v2/wire_transfers/c70bd7bc-58e0-4fdb-8c1f-70186e0de587/attachments' \
 --header "Content-Type: multipart/form-data" \
 --form "document=@file"