Skip to content

Command: payment.removeTag

Back to Index

Removes a tag from a Payment

Body
keystring

The tag key

Examples

Remove tag from existing Payment
POST https://<hantera-hostname>/resources/actors/payment/43ebb15a-8e7b-43cd-b3b0-fbb4de269a8f
Authorization: Bearer <YOUR TOKEN>
Content-Type: application/json
[{
"type": "applyCommands",
"body": {
"commands": [{
"type": "removeTag",
"key": "card"
}
]
}
}]
Back to Index