Applications
Applications allow members to apply to your site and be reviewed by your officers. The Applications API lets you view, delete, restore, accept, reject and re-open applications.
Applications API
List Object
Show Object
Applications API
Get list of applications
GET /site_applications.json
Get application 1000
GET /site_applications/1000.json
Delete application 1000
DELETE /site_applications/1000.json
Restore application 1000
PATCH /site_applications/1000/restore.json
Accept application 1000
PATCH /site_applications/1000/accept.json
Reject application 1000
PATCH /site_applications/1000/reject_create.json
Re-open application 1000
PATCH /site_applications/1000/reopen.json
List Object
{
"site_applications": [
{
"id": 7300,
"status": "open",
"created_on": "2012-06-28T19:35:45-04:00",
"name": "Naks",
"main_character": "Naks",
"comments_count": 5,
"game_race": {
"id": 10,
"name": "Blood Elf"
},
"game_class": {
"id": 6,
"name": "Priest"
}
}
]
}
Show Object
{
"site_application": {
"id": 7300,
"status": "open",
"created_on": "2012-06-28T19:35:45-04:00",
"name": "Naks",
"main_character": "Naks",
"comments_count": 5,
"game_race": {
"id": 10,
"name": "Blood Elf"
},
"game_class": {
"id": 6,
"name": "Priest"
}
}
}