POST
/
v1
/
applications
/
{application_id}
/
jobs
curl --location --request POST https://api.writer.com/v1/applications/{application_id}/jobs \
 --header "Authorization: Bearer <token>" \
 --header "Content-Type: application/json" \
--data-raw '{"inputs":[{"id": "Image ID", "value": ["12345"]}]}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "in_progress",
  "created_at": "2023-11-07T05:31:56Z"
}

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 create a job.

Body

application/json
inputs
object[]
required

A list of input objects to generate content for.

Response

202 - application/json
id
string
required

The unique identifier for the async job created.

status
enum<string>
required

The status of the job.

Available options:
in_progress,
failed,
completed
created_at
string
required

The timestamp when the job was created.