Obtain auth key for user that has provided their username and password to login to your app. (or to obtain an auth key for a script like IFTTT)
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
Request auth key for user (login user)
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
{
"type": "object",
"properties": {
"otp": {
"type": "string",
"format": "password"
},
"password": {
"type": "string",
"format": "password"
},
"username": {
"type": "string"
}
},
"required": [
"password",
"username"
],
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
{
"type": "object",
"properties": {
"auth_key": {
"type": "string"
},
"success": {
"type": "boolean"
}
}
}