Skip to content

Commit

Permalink
feat : add view claimed
Browse files Browse the repository at this point in the history
  • Loading branch information
teranixbq committed Dec 12, 2023
1 parent 34456b2 commit f66c199
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions swagger/apidoc-user.json
Original file line number Diff line number Diff line change
Expand Up @@ -2128,6 +2128,73 @@
}
}
},
"/users/point/claimed": {
"get": {
"security": [
{
"token": []
}
],
"tags": [
"Users Point & Voucher"
],
"summary": "view claimed daily",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"examples": {
"succes": {
"value":{
"status": true,
"message": "berhasil menampilkan data",
"data": [
{
"claim": true,
"daily_point_id": 7,
"created_at": "2023-12-12T07:00:00Z"
},
{
"claim": true,
"daily_point_id": 6,
"created_at": "2023-12-12T00:00:00Z"
},
{
"claim": true,
"daily_point_id": 5,
"created_at": "2023-12-11T00:00:00Z"
},
{
"claim": true,
"daily_point_id": 4,
"created_at": "2023-12-10T00:00:00Z"
},
{
"claim": true,
"daily_point_id": 2,
"created_at": "2023-12-06T00:00:00Z"
},
{
"claim": true,
"daily_point_id": 3,
"created_at": "2023-12-05T00:00:00Z"
},
{
"claim": true,
"daily_point_id": 1,
"created_at": "2023-12-04T00:00:00Z"
}
]
}
}
}
}
}
}
}
}
},
"/users/point/history": {
"get": {
"security": [
Expand Down

0 comments on commit f66c199

Please sign in to comment.