-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopulate_leaders.sh
6 lines (6 loc) · 1019 Bytes
/
populate_leaders.sh
1
2
3
4
5
6
#!/bin/bash
curl -X POST -H "X-Parse-Application-Id: ENGAGE" -H "Content-Type: application/json" -d '{"AccountId":1,"score":1000,"name":"Krystal","email":"[email protected]"}' http://localhost:1337/parse/classes/leaders/
curl -X POST -H "X-Parse-Application-Id: ENGAGE" -H "Content-Type: application/json" -d '{"AccountId":2,"score":900,"name":"Michael","email":"[email protected]"}' http://localhost:1337/parse/classes/leaders/
curl -X POST -H "X-Parse-Application-Id: ENGAGE" -H "Content-Type: application/json" -d '{"AccountId":3,"score":800,"name":"Jared","email":"[email protected]"}' http://localhost:1337/parse/classes/leaders/
curl -X POST -H "X-Parse-Application-Id: ENGAGE" -H "Content-Type: application/json" -d '{"AccountId":4,"score":700,"name":"Lauren","email":""}' http://localhost:1337/parse/classes/leaders/
curl -X POST -H "X-Parse-Application-Id: ENGAGE" -H "Content-Type: application/json" -d '{"AccountId":5,"score":600,"name":"Allyson","email":""}' http://localhost:1337/parse/classes/leaders/