Skip to main content
GET
/
v1
/
refunds
/
{refundId}
/
status
Get Refund Status
curl --request GET \
  --url https://api.peere.network/v1/refunds/{refundId}/status \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "message": "Refund status retrieved successfully",
  "refund": {
    "refundId": "<string>",
    "originalTransactionId": "<string>",
    "amount": 123,
    "status": "<string>",
    "reason": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "processedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

refundId
string
required

Response

Refund status retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string
Example:

"Refund status retrieved successfully"

refund
object