cancel_refund_link
POST  -- Supprimer un lien de remboursement pour un payment
| Argument | Description | Type - Taille | Exemple | Obligatoire |
|---|---|---|---|---|
| reference | Référence du remboursement | String - 32 | OUI | |
| comment | Commentaire | String | NON |
Requête
POST /xxxx/cancel_refund_link HTTP/1.1
Host: xxx.xxxxxxxx.fr
Authorization: Basic JQheySHkalSNuakkmSmm==
Content-Type: application/json
Accept: application/json
{
"reference": "TEST-1",
"comment": "Suppression du lien avec la référence TEST-1"}
Réponse
HTTP/1.1 200 OK
Content-Type: application/json
{
"result" : true,
"reference" : "reference-1234"
}
Réponse
HTTP/1.1 200 OK
Content-Type: application/json
{
"result" : false,
"error" : "Pas de lien correspondant"
}