{
  "status": "success",
  "message": "mission completed",
  "data": {
    "id": "f923cc9c-c269-4d8b-b91f-398e8ace6e76",
    "user": {},
    "mission": {
      "id": "fb77686c-0eda-4a1b-9587-9376c1d5c118",
      "name": "yearly data purchase",
      "description": "Recharge data daily",
      "pointsReward": 1,
      "startDate": "2025-08-05T23:00:00.000Z",
      "endDate": "2025-08-14T23:00:00.000Z",
      "createdAt": "2025-08-13T22:28:27.997Z",
      "updatedAt": "2025-08-13T22:28:27.997Z",
      "partner": {}
    },
    "progress": "completed",
    "completedAt": "2025-08-13T23:30:38.866Z",
    "createdAt": "2025-08-13T22:29:53.819Z",
    "updatedAt": "2025-08-13T22:30:38.877Z"
  }
}

URL
https://test-api.bvndle.com/api/v1/laas/missions/:id/complete
Base URL
https://test-api.bvndle.com/api/v1/laas
HTTP Method
POST
Authorization Header
Bearer ACCESS_TOKEN

Request Body:
nametypeDescription
userIdstringRequired
ID of the onboarded user
partnerIdstringRequired
ID of the partner

cURL
curl --request POST
'https://test-api.bvndle.com/api/v1/laas/missions/07d205a5-fde5-4fc6-a886-4f0a7d647e96/complete' \
--header 'Content-Type: application/json' \

{
    "userId": "ceede6ba-bc5b-460b-a056-b28e5bce803b",
    "partnerId": "dcc1a639-906e-4393-84b7-689379fc4de8"
}

{
  "status": "success",
  "message": "mission completed",
  "data": {
    "id": "f923cc9c-c269-4d8b-b91f-398e8ace6e76",
    "user": {},
    "mission": {
      "id": "fb77686c-0eda-4a1b-9587-9376c1d5c118",
      "name": "yearly data purchase",
      "description": "Recharge data daily",
      "pointsReward": 1,
      "startDate": "2025-08-05T23:00:00.000Z",
      "endDate": "2025-08-14T23:00:00.000Z",
      "createdAt": "2025-08-13T22:28:27.997Z",
      "updatedAt": "2025-08-13T22:28:27.997Z",
      "partner": {}
    },
    "progress": "completed",
    "completedAt": "2025-08-13T23:30:38.866Z",
    "createdAt": "2025-08-13T22:29:53.819Z",
    "updatedAt": "2025-08-13T22:30:38.877Z"
  }
}