Removes a tag from a Payment
key
The tag key
POST https://<hantera-hostname>/resources/actors/payment/43ebb15a-8e7b-43cd-b3b0-fbb4de269a8fAuthorization: Bearer <YOUR TOKEN>Content-Type: application/json [{ "type": "applyCommands", "body": { "commands": [{ "type": "removeTag", "key": "card" } ] }}]
curl -i -X POST \ https://<hantera-hostname>/resources/actors/payment/43ebb15a-8e7b-43cd-b3b0-fbb4de269a8f \ -H 'Authorization: Bearer <YOUR TOKEN>' \ -H 'Content-Type: application/json' \ -d '[{ "type": "applyCommands", "body": { "commands": [{ "type": "removeTag", "key": "card" } ] }}]'
Invoke-WebRequest `-Uri "https://<hantera-hostname>/resources/actors/payment/43ebb15a-8e7b-43cd-b3b0-fbb4de269a8f" `-Method POST ` `-Headers @{Authorization="Bearer <YOUR TOKEN>"; 'Content-Type'="application/json"}-Body '[{ "type": "applyCommands", "body": { "commands": [{ "type": "removeTag", "key": "card" } ] }}]'