About this endpoint
What it does
Submits a job to generate a product introduction from the provided content. The endpoint returns identifiers you can use to check job progress later.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Input content used to generate the product introduction. |
| language | String | No | Language for the generated introduction. Default: English. |
| max_length | Integer | No | Maximum length for the generated introduction. |
| voice_tone | String | No | Desired tone of voice for the generated introduction. |
Response
Returns a JSON object with job_id and status_url string fields. job_id is the unique identifier for the submitted job, and status_url is the URL to poll for job status. Success response: 200.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | Yes | The unique identifier for the submitted job. |
| status_url | String | Yes | The URL to poll for job status. |
Notes
This endpoint kicks off an async job and returns immediately with a job identifier; the actual work runs in the background. Pair this call with the corresponding job_check endpoint — poll that until the status reaches a terminal state to retrieve the result. Extract the job identifier from job_id, and use status_url to poll job progress.