Last active
August 29, 2015 14:04
-
-
Save jcreixell/959d7d8d62315c0a86b5 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, | |
"cid": "c37" | |
"currencyid": "banana_coins", | |
"name": "Banana Coins" | |
}, | |
{ | |
"id": 4, | |
"cid": "c39" | |
"currencyid": "magic_melons", | |
"name": "Magic Melons" | |
}], | |
"default_currencyid": "magic_melons" | |
} | |
} | |
// Validation errors | |
// Status-code: 409 | |
{ | |
"errors": { | |
"application_segments_parameters": { | |
"c37": { | |
"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, | |
"cid": "c37" | |
"currencyid": "banana_coins", | |
"name": "Banana Coins" | |
}, | |
{ | |
"id": 4, | |
"cid": "c39" | |
"currencyid": "magic_melons", | |
"name": "Magic Melons" | |
}], | |
"default_currencyid": "magic_melons" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment