Skip to main content
POST
/
refund-chargeback
/
chargeback
/
merchant
/
api
/
accept_reject_chargeback
Accept Or Reject Chargeback
curl --request POST \
  --url https://api.payaza.africa/live/refund-chargeback/chargeback/merchant/api/accept_reject_chargeback \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "action": "accept",
  "chargeback_fk": 39,
  "comment": "Test",
  "evidence_url": "https://evidence.url"
}
'
{
  "status": "success",
  "message": "Chargeback accept Success"
}

Authorizations

Authorization
string
header
required

Payaza {{Public API Key in Base 64}}

Body

application/json
action
enum<string>
required

The action to be performed on the chargeback..

Available options:
accept,
reject
Example:

"accept"

chargeback_fk
integer
required

The unique identifier of the chargeback. This can be retrieved in the Chargeback request API response..

Example:

39

evidence_url
string<uri> | null
required

The evidence URL. This link must be accessible.

Example:

"https://evidence.url"

comment
string | null

A brief note on your chargeback action.

Example:

"Test"

Response

Accept Or Reject Chrageback Response

The response is of type any.