Skip to main content
GET
/
v1
/
customer-decisions
/
{customerDecisionId}
Get Customer Decision By ID
curl --request GET \
  --url https://api.peere.network/v1/customer-decisions/{customerDecisionId} \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "success": true,
  "data": {
    "id": "<string>",
    "customerId": "<string>",
    "entityId": "<string>",
    "agreementPhrase": "<string>",
    "lookupPhrase": "<string>",
    "decision": "<string>",
    "spendingLimits": {
      "daily": 123,
      "monthly": 123
    },
    "blockMerchant": true,
    "createdAt": "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

customerDecisionId
string
required

Response

Customer decision retrieved successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

data
object