Skip to main content
GET
/
v1
/
merchant
/
customer-decisions
Get Customer Decisions
curl --request GET \
  --url https://api.peere.network/v1/merchant/customer-decisions \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "data": [
    {
      "id": "<string>",
      "customerId": "<string>",
      "entityId": "<string>",
      "agreementPhrase": "<string>",
      "decision": "<string>",
      "spendingLimits": {
        "daily": 123,
        "monthly": 123
      }
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

agreementPhrase
string
customerId
string
lookupPhrase
string
limit
integer
skip
integer

Response

Customer decisions retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

data
object[]
total
integer