Skip to main content
POST
/
v1
/
provider
/
merchant
/
trust
/
validate
Validate Merchant Trust Level
curl --request POST \
  --url https://api.peere.network/v1/provider/merchant/trust/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityId": "<string>",
  "requiredTrustLevel": "basic"
}
'
{
  "statusCode": 200,
  "success": true,
  "data": {
    "currentTrustLevel": "<string>",
    "valid": true
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
entityId
string
required
requiredTrustLevel
enum<string>
required
Available options:
basic,
enhanced,
premium

Response

Trust level validated successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

data
object