canmove, Confirmed users
6,441
edits
No edit summary |
No edit summary |
||
| Line 168: | Line 168: | ||
} | } | ||
</pre> | </pre> | ||
=== POST === | |||
Creates a new Release with the provided values. The following parameters are supported: | |||
* name (required) | |||
* product (required) | |||
* blob (required) | |||
== /releases/<release> == | |||
=== GET === | |||
Returns the "data" portion of the named Release, which is a JSON Object. If "pretty" is present in the query string and set to true, it will be pretty formatted. For example: | |||
<pre> | |||
{ | |||
"name": "Firefox-mozilla-central-nightly-latest", | |||
"schema_version": 4, | |||
"platforms": { | |||
"WINNT_x86-msvc": { | |||
... | |||
} | |||
} | |||
} | |||
</pre> | |||
=== PUT === | |||