{
  "status": "success",
  "message": "Successfully Linked Tag",
  "data": {
    "redirectUrl": "google.com?authorization-code=W2H347C8D1VYISL919U4"
  }
}

URL
https://test-api.bvndle.com/api/v1/ufel/users/link-tag
Base URL
https://test-api.bvndle.com/api/v1/ufel
HTTP Method
POST
Authorization Header
Bearer ACCESS_TOKEN

nametypeDescription
clientIdstringRequired
This is generated after the partner onboards on SSO
epUserIdstringRequired
This is the userId used to onboard the user
passwordstringRequired
Unique tag of the user's choice.
tagstringRequired
Password must contain at least 8 characters, one uppercase, a number, and a special character.

cURL
curl --request POST
'https://test-api.bvndle.com/api/v1/ufel/users/link-tag' \
--header 'Content-Type: application/json' \

{
    "clientId": "0e45faa1385f8b3e4f2912a9fe9fddd3937b4ae52782ca5b8d644915e58de2d7ec8bf68a9fa844234e4f79ee8afd116ee35f3a9ffc6ac2d92f0a71656a6f4853",
    "epUserId": "d3c0c232-6e07-40eb-a1ee-593483d689c9",
    "tag": "j.hope",
    "password": "P@ssword1"
}

{
  "status": "success",
  "message": "Successfully Linked Tag",
  "data": {
    "redirectUrl": "google.com?authorization-code=W2H347C8D1VYISL919U4"
  }
}