v1

latestOpenAPI 3.1.02026-07-17283353.4 KB
HTTPWalletJSON

Submits a transaction to be internalized

post/internalizeAction

Request body

txnumber[]
descriptionstring
labelsstring[]
seekPermissionboolean

Example request

{
  "tx": [
    1,
    1,
    1,
    1
  ],
  "outputs": [
    {
      "outputIndex": 0,
      "protocol": "wallet payment",
      "paymentRemittance": {
        "derivationPrefix": "12345678",
        "derivationSuffix": "00000",
        "senderIdentity": "02ffc4f361307f34a82069edbcbe2c9f4bd5498165549f42bdeb698ffdcab1ea38"
      }
    },
    {
      "outputIndex": 1,
      "protocol": "basket insertion",
      "insertionRemittance": {
        "basket": "todo token",
        "customInstructions": "3453,3462346,self",
        "tags": [
          "foose",
          "goose"
        ]
      }
    }
  ],
  "description": "Creation of a new thing.",
  "labels": [
    "todo create",
    "productivity"
  ]
}

Response

The internalization result

acceptedboolean

Example response

{
  "accepted": true
}