cURL
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>" } ] }
Device lookup for a customer.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"device_789"
Device lookup successful
200
true
"Device lookup successful"
Show child attributes