POST
/
v1
/
files
/
retry
curl --location --request POST https://api.writer.com/v1/files/retry \
 --header "Authorization: Bearer <token>" \
 --header "Content-Type: application/json" \
 --data-raw '{"file_ids":["182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"]}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
file_ids
string[]
required

The unique identifier of the files to be retried.

Response

200 - application/json
The retry request is being processed
success
boolean

Indicates whether the retry operation was successful.

Was this page helpful?