v1

latestOpenAPI 3.0.0Proprietary2026-07-26316155742.7 KB
Jobs

List account jobs

List all jobs for the given account.

get/accounts/{account_id}/jobs

Path parameters

account_idstring required

Account ID

Query parameters

pageinteger

Page number

per_pageinteger

Limit on the number of objects to be returned, between 1 and 100. 25 by default

owned_bystring

filter by user owning job

assigned_tostring

filter by user assigned to job

statestring

filter by state of job; valid states are: draft, in_progress, completed

updated_sincestring

filter by jobs updated since given date

Headers

X-PhraseApp-OTPstring

Two-Factor-Authentication token (optional)

Response

OK

idstring
namestring
briefingstring
due_datestring date-time nullable
statestring
ticket_urlstring
created_atstring date-time
updated_atstring date-time
automation_idstring nullable

The ID of the automation that created this job, or null if the job was created manually.

job_template_idstring nullable

The ID of the job template this job was created from, or null if no template was used.

review_due_datestring date-time nullable

The review due date for this job. Returns null when the project does not have review workflow enabled.

Example response

[
  {
    "id": "626ea67628690c73ac86ac81eec2d185",
    "name": "Translations for new Feature",
    "briefing": "Some instructions for the translators",
    "due_date": "2017-02-28T09:52:53Z",
    "state": "completed",
    "ticket_url": "https://example.atlassian.net/browse/FOO",
    "created_at": "2017-01-28T09:52:53Z",
    "updated_at": "2017-01-28T09:52:53Z",
    "project": {
      "id": "abcd1234cdef1234abcd1234cdef1234",
      "name": "My Android Project",
      "main_format": "xml",
      "created_at": "2015-01-28T09:52:53Z",
      "updated_at": "2015-01-28T09:52:53Z"
    }
  }
]