v1

latestOpenAPI 3.0.0Proprietary2026-07-26316155742.7 KB
Releases

Update a release

Update an existing release.

patch/accounts/{account_id}/distributions/{distribution_id}/releases/{id}

Path parameters

account_idstring required

Account ID

distribution_idstring required

Distribution ID

idstring required

ID

Headers

X-PhraseApp-OTPstring

Two-Factor-Authentication token (optional)

Request body

descriptionstring

Description of the release

platformsstring[]

List of platforms the release should support.

app_min_versionstring

Minimum version of the app that the release supports in semver format

app_max_versionstring

Maximum version of the app that the release supports in semver format

branchstring

Branch used for release

Example request

{
  "description": "My first Release",
  "platforms": [
    "android",
    "ios"
  ],
  "app_min_version": "2.5.0",
  "app_max_version": "3.0.0",
  "branch": "my-feature-branch"
}

Response

OK

idstring
versioninteger
app_min_versionstring
app_max_versionstring
descriptionstring
platformsstring[]
environmentsstring[]
tagsstring[]
statestring
created_atstring date-time
updated_atstring date-time

Example response

{
  "id": "abcd1234cdef1234abcd1234cdef1234",
  "version": 1,
  "project": {
    "id": "abcd1234cdef1234abcd1234cdef1234",
    "name": "My Android Project",
    "main_format": "xml",
    "created_at": "2015-01-28T09:52:53Z",
    "updated_at": "2015-01-28T09:52:53Z"
  },
  "platforms": [
    "android"
  ],
  "environments": [
    "development",
    "production"
  ],
  "locales": [
    {
      "id": "abcd1234cdef1234abcd1234cdef1234",
      "name": "English",
      "code": "en-GB"
    }
  ],
  "created_at": "2015-01-28T09:52:53Z",
  "updated_at": "2015-01-28T09:52:53Z"
}