Skip to main content

URL
https://test-api.bvndle.com/api/v1/laas/streaks/:streakId/rewards/:rewardId
Base URL
https://test-api.bvndle.com/api/v1/laas
HTTP Method
PUT
Authorization Header
Bearer ACCESS_TOKEN

Request Body:
nametypeDescription
amountnumberOptional
typestringOptional

cURL
curl --request PUT
'https://test-api.bvndle.com/api/v1/laas/streaks/1c865ca9-2df1-4d36-8f5b-fb5f33dc7f70/rewards/14c7655e-db11-4741-9c16-a4d3300a2206' \' \
--header 'Content-Type: application/json' \

{
    "amount": 2
    // "type": "airtime"
}

{
  "status": "success",
  "message": "reward updated",
  "data": {
    "id": "14c7655e-db11-4741-9c16-a4d3300a2206",
    "reward": 2,
    "type": "coins",
    "streak": {},
    "createdAt": "2025-09-15T21:09:52.811Z",
    "updatedAt": "2025-09-15T22:30:52.654Z"
  }
}