643 matches
33 actions
KumpeApps
33 actions
- Add item to kid's wishlistPOSTv1.0.0
- adds chore for given userPOSTv1.0.0
- adds new allowance transaction to kidUserIDPOSTv1.0.0
- adds new child userPOSTv1.0.0
- adds new master user accountPOSTv1.0.0
- Compromise app keyPATCHv1.0.0
- Compromise app keyPATCHv1.0.0
- Compromise auth keyPATCHv1.0.0
- Compromise auth keyPATCHv1.0.0
- Create Share LinkGETv1.0.0
- Deactivate app keyPUTv1.0.0
- Deactivate app keyPUTv1.0.0
- Deactivate auth key (logout)PUTv1.0.0
- Deactivate auth key (logout)PUTv1.0.0
- Delete item from wishlistDELETEv1.0.0
- deletes chore for given chore idDELETEv1.0.0
- deletes userDELETEv1.0.0
- Get list of wishlist itemsGETv1.0.0
- Gets user infoGETv1.0.0
- Request app keyPOSTv1.0.0
- Request app keyPOSTv1.0.0
- Request auth key for user (login user)GETv1.0.0
- Request auth key for user (login user)POSTv1.0.0
- Request auth key for user (login user)GETv1.0.0
- Request auth key for user (login user)POSTv1.0.0
- returns allowance balance and allowance transactionsGETv1.0.0
- returns list of chores for given userGETv1.0.0
- returns list of usersGETv1.0.0
- subscribes/unsubscribes/registers for apns push notificationsPOSTv1.0.0
- Update item on kid's wishlistPUTv1.0.0
- updates chore for given chore idPUTv1.0.0
- updates userPUTv1.0.0
- Verifies YubiKey OTP for authenticated userGETv1.0.0
Other/KumpeApps
subscribes/unsubscribes/registers for apns push notifications
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
{
"type": "object",
"properties": {
"badge": {
"type": "integer"
},
"devicename": {
"type": "string"
},
"kidUserId": {
"type": "integer"
},
"message": {
"type": "string"
},
"priority": {
"type": "string",
"enum": [
"passive",
"active",
"time-sensitive",
"critical"
]
},
"section": {
"type": "string",
"enum": [
"Chores",
"Chores-New",
"Chores-Reminders",
"Allowance",
"Allowance-New",
"WishList"
]
},
"sound": {
"type": "string"
},
"title": {
"type": "string"
},
"token": {
"type": "string"
},
"tool": {
"type": "string",
"enum": [
"register",
"subscribe",
"unsubscribe",
"send"
]
}
},
"required": [
"kidUserId",
"tool"
],
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
{
"type": "object",
"description": "Success",
"properties": {
"message": {
"type": "string"
},
"success": {
"type": "boolean"
}
}
}