Last active
August 29, 2015 14:04
-
-
Save jcreixell/465f52b0a5f3dd05570d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PUT /en/1/apps/[id] | |
// Request | |
{ "application": | |
{ | |
"id": 3, | |
"name": "App name", | |
"url": "http://example.com" | |
"not_listed_in_app_store": 0, | |
"coppa_compliant": 0, | |
"sandbox_mode": 0, | |
"managed_virtual_currency": 0, | |
"callback_url": "http://example.com", | |
"callback_token": "fd0dd6a5a8fb050d07557fb94c9f8209", | |
"virtual_currencies" : [{ | |
"id": 3, | |
"currencyid": "banana_coins", | |
"name": "Banana Coins", | |
"default": 1 | |
}, | |
{ | |
"id": 4, | |
"currencyid": "magic_melons", | |
"name": "Magic Melons", | |
"default": 0 | |
}] | |
} | |
} | |
// Validation errors | |
// Status-code: 409 | |
{ | |
"errors": { | |
"name": "can't be blank", | |
"virtual_currencies": { | |
"3": { | |
"currencyid": "wrong id" | |
} | |
} | |
} | |
} | |
// GON | |
window.gon.application = { | |
"name": "App name", | |
"url": "http://example.com" | |
"not_listed_in_app_store": 0, | |
"coppa_compliant": 0, | |
"sandbox_mode": 0, | |
"managed_virtual_currency": 0, | |
"callback_url": "http://example.com", | |
"callback_token": "fd0dd6a5a8fb050d07557fb94c9f8209", | |
"virtual_currencies" : [{ | |
"id": 3, | |
"currencyid": "banana_coins", | |
"name": "Banana Coins", | |
"default": 1 | |
}, | |
{ | |
"id": 4, | |
"currencyid": "magic_melons", | |
"name": "Magic Melons", | |
"default": 0 | |
}] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment