Skip to main content
POST
/
v1
/
billing
/
bank-response
Bank Billing Response
curl --request POST \
  --url https://api.peere.network/v1/billing/bank-response \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "billingRequestId": "<string>",
  "action": "approve_once",
  "batchId": "<string>",
  "declineReason": "<string>",
  "bankTransactionId": "<string>",
  "metadata": {}
}
'
{
  "statusCode": 200,
  "success": true,
  "message": "Billing response processed successfully",
  "data": {
    "billingRequestId": "<string>",
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
billingRequestId
string
required
action
enum<string>
required
Available options:
approve_once,
approve_recurring,
deny,
suspended
batchId
string
declineReason
string
bankTransactionId
string
metadata
object

Response

Billing response processed successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string
Example:

"Billing response processed successfully"

data
object