Payment Refund Request

order_cancel

POST https://api.paym.es/v4.6/order_cancel

Transaction cancellation/refund request is as follows.

Request Body

NameTypeDescription

hash*

string

Base64 encoded string of SHA512 hash of data sent. It is detailed below.

price*

string

Refund amount

paymesOrderId*

string

Unique transaction id sent by Paymes

publicKey*

string

Public key of your account

{
    "status": true,
    "message":"İptal işlemi başarılı!"
}

Hash Check

Hash is obtained by concatenating the following parameters as string, hashing with SHA512 and encoding the result in base64 type:

paymesOrderId + price + secret

Last updated