Skip to main content
POST
/
v1
/
billing
/
intent-response
Bank Intent Response
curl --request POST \
  --url https://api.peere.network/v1/billing/intent-response \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customerId": "<string>",
  "entityId": "<string>",
  "lookupPhrase": "<string>",
  "customerDecision": "approve_once",
  "spendingLimits": {
    "single": 123,
    "daily": 123,
    "weekly": 123,
    "monthly": 123
  },
  "blockMerchant": true,
  "reference": "<string>"
}
'
{
  "statusCode": 201,
  "success": true,
  "message": "Customer decision created successfully",
  "customerDecisionId": "<string>",
  "agreementPhrase": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
customerId
string
required
entityId
string
required
lookupPhrase
string
required
customerDecision
enum<string>
required
Available options:
approve_once,
approve_recurring,
deny,
suspended
spendingLimits
object
blockMerchant
boolean
reference
string

Response

Customer decision created successfully

statusCode
integer
Example:

201

success
boolean
Example:

true

message
string
Example:

"Customer decision created successfully"

customerDecisionId
string
agreementPhrase
string