-
Notifications
You must be signed in to change notification settings - Fork 21
Anand Chitipothu edited this page May 16, 2016
·
3 revisions
Quick summary of API provided by cleansweep.
Cleansweep currently supports HTTP Basic Auth.
Generate an authorization token by visiting /accounts/tokens
and use that token as password for HTTP Basic Auth.
Provides information about the logged in user.
$ curl -u [email protected] http://<host>/api/user
Enter host password for user '[email protected]':
{
"created": "2015-10-09T03:19:27.470384",
"email": "[email protected]",
"id": 1,
"name": "Some One",
"phone": "9876500000",
"place": {
"key": "KA/AC158/PB0203",
"name": "PB0203 - Adarsha Vidya Mandira, Room No-1",
"place_type": "PB"
},
"voterid": null
}
End Point: /api//volunteers/add
$ curl -u [email protected]:secretauthtoken \
-X POST -H 'Content-Type: application/json' \
-d '{"name": "Lal Gore", "email": "[email protected]", "phone": "9876500010"}' \
http://<host>/api/KA/AC158/PB0203/volunteers/add
The above one will add "Lal Gore"
as a new volunteer to KA/AC158/PB0203
.