v1

latestOpenAPI 3.0.0Proprietary2026-07-26316155742.7 KB
Release Triggers

Get a single release trigger

Get details of a single release trigger.

get/accounts/{account_id}/distributions/{distribution_id}/release_triggers/{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)

Response

OK

idstring
branchstring
cron_schedulestring

Cron schedule for the scheduler. Read more about the format of this field at https://en.wikipedia.org/wiki/Cron

time_zonestring

Time zone for the scheduler

next_run_atstring date-time

The next time a release will be created for this trigger

app_min_versionstring
app_max_versionstring
tagsstring[]
created_atstring date-time
updated_atstring date-time

Example response

{
  "id": "abcd1234cdef1234abcd1234cdef1234",
  "locales": [
    {
      "id": "abcd1234cdef1234abcd1234cdef1234",
      "name": "English",
      "code": "en-GB"
    }
  ],
  "branch": "my-feature-branch",
  "tags": [
    "android",
    "feature1"
  ],
  "cron_schedule": "15 18 * * 1,3",
  "time_zone": "Europe/Berlin",
  "next_run_at": "2015-01-28T09:52:53Z",
  "app_min_version": "1.0.0",
  "app_max_version": "2.0.0",
  "created_at": "2015-01-28T09:52:53Z",
  "updated_at": "2015-01-28T09:52:53Z"
}