Create Papel Withdraw

Creates Papel Withdraw

POST https://api.parona.in/V1/Withdraw/Papel/Create/

This endpoint allows you to create a new Papel withdraw request.

Headers

Name
Type
Description

Accept

String

application/json

api-key*

String

ParonaPAY API Key

Request Body

Name
Type
Description

memberId*

String

userid on your side

memberUserName

String

username on your side

transactionId*

String

Transaction ID created on your side (this value is sent back to you by a callback request to callback_url when transaction is completed)

amount*

Integer

Amount in INT format with no decimals

checksum*

String

Create a string imploding values with pipe character and hash it with sha256 algorithm.

PHP Example:

hash("sha256", "apiKey|secretKey|transactionId")

memberFullName*

String

Full Name of the user on your side

callback_url*

String

Transaction result will be sent to this endpoint.

papelAccountNumber*

String

User Papel Number (Money will be transferred to this address/account)

papelAccountFullName

String

User Papel Account Owner Full Name (optional)

{
    "status": true,
    "error": 0,
    "message": "Withdraw Payment Successfully Created",
    "paymentStatus": false,
    "paymentStatusCode" : 0,
    "paymentStatusDescription": "Payment Awaiting"
}

Response Parameters

status: Request status whether all verification checks succeed or not. true or false

error: Request response error code. Returns 0 if succeeds.

message: Request response message.

paymentStatus: This value will always be returned false until the payment completes successfully.

paymentStatusCode: 0 : Awaiting (initial status after creation)

paymentStatusDescription: Payment status description.

Last updated