GET
/
v1
/
applications
/
{application_id}
/
jobs
curl --location --request GET https://api.writer.com/v1/applications/{application_id}/jobs \
 --header "Authorization: Bearer <token>"
{
  "result": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "in_progress",
      "application_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "data": {
        "title": "<string>",
        "suggestion": "<string>"
      },
      "error": "<string>"
    }
  ],
  "totalCount": 123,
  "pagination": {
    "offset": 123,
    "limit": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

application_id
string
required

The ID of the no-code app for which to retrieve jobs.

Query Parameters

status
enum<string>

The status of the job.

Available options:
in_progress,
failed,
completed
offset
integer

The pagination offset for retrieving the jobs.

limit
integer

The pagination limit for retrieving the jobs.

Response

200 - application/json
Successful response
result
object[]
required
totalCount
integer

The total number of jobs associated with the application.

pagination
object