Skip to main content
POST
/
v1
/
customer
/
device
/
lookup
Lookup Customer Device Phrase
curl --request POST \
  --url https://api.peere.network/v1/customer/device/lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deviceId": "device_789"
}
'
{
  "statusCode": 200,
  "success": true,
  "message": "Device lookup successful",
  "data": [
    {
      "bankId": "<string>",
      "bankName": "<string>",
      "accountName": "<string>",
      "phrase": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
deviceId
string
required
Example:

"device_789"

Response

Device lookup successful

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string
Example:

"Device lookup successful"

data
object[]