{
  "status": "success",
  "message": "tier upgraded",
  "data": {}
}

URL
https://test-api.bvndle.com/api/v1/laas/user/upgrade-tier
Base URL
https://test-api.bvndle.com/api/v1/laas
HTTP Method
POST
Authorization Header
Bearer ACCESS_TOKEN

Request Body:
nametypeDescription
userIdstringOptional
ID of the user
partnerIdstringOptional
ID of the partner
tierIdstringOptional
ID of the tier to upgrade the user to

cURL
curl --request POST
'https://test-api.bvndle.com/api/v1/laas/user/upgrade-tier' \
--header 'Content-Type: application/json' \

{
    "userId": "02731314-e354-418a-8c7f-6f4b3a1ead6d",
    "partnerId": "dcc1a639-906e-4393-84b7-689379fc4de8",
    "tierId": "6f4976be-5616-49e3-8643-ff125cc51e94"
}

{
  "status": "success",
  "message": "tier upgraded",
  "data": {}
}