UAPAY - національний платіжний сервіс

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Method for canceling an invoice payment

URI

POST api/invoicer/payments/reverse


Request:

KeyDescriptionTypeMandatoryExample
params



sessionIdclient session idstring, uuidyes"000ab70b-ef76-4385-a0f5-a98693c716f1"
paymentIdpayment idstring, uuidyes"08eff720-9432-4951-a698-94e24db59e66"
invoiceIdinvoice idstring, uuidyes"48cae638-2f4b-434c-aafa-a4b9ced4b486"
data



amountrefund amountintegerno100



Example of the query
{
   "params": {
      "sessionId": "00684a7f-3d5c-43f4-b4d1-ea994226be9c",
      "paymentId": "310fe3f9-f3b0-44e4-80c6-95cc432d18de",
      "invoiceId": "01bdc112-623e-490c-9717-42168b7346d8"
   },
   "data": {
   	  "amount": 100
   }
}



Reply:

Key
Description
Type
Example
status

Status. 0 - error, 1 - success

integer

1

data


paymentId

payment idstring, uuid
"08eff720-9432-4951-a698-94e24db59e66"



Example of an answer
{
    "status": 1,
    "data": {
        "paymentId": "08eff720-9432-4951-a698-94e24db59e66"
    }
}
  • No labels