POST
/
api
/
merchants
/
refund_request
/
consumer_refund_request
curl --location --request POST 'http://127.0.0.1:8000/api/merchants/refund_request/consumer_refund_request/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--body-data 'transaction_uuid:<TRANSACTION_UUID>'

"Refund request send"
    
Authorization
string

The authentication token that you will get in the success response on ‘verify_user’ api.

body

transaction_uuid
string

You’ll get this ID from the subscription transaction logs transaction_uuid .

Response

success
number

This Response field will return dictionary of output with status code 200 on success request.

curl --location --request POST 'http://127.0.0.1:8000/api/merchants/refund_request/consumer_refund_request/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--body-data 'transaction_uuid:<TRANSACTION_UUID>'

"Refund request send"