Skip to main content
POST
/
v1
/
bank
/
customer
/
device
/
link
Link Customer Device
curl --request POST \
  --url https://api.peere.network/v1/bank/customer/device/link \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customerId": "<string>",
  "phrase": "<string>",
  "deviceId": "<string>"
}
'
{
  "statusCode": 200,
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
customerId
string
required
phrase
string
required
deviceId
string
required

Response

Device linked successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string