Bulk Jobs

Restart a Bulk Job

Restart a bulk job in full, from failed rows, or from a specified position.

post/bulk/jobs/{jobId}/restart

Path parameters

jobIdstring uuid required

UUID identifier of the bulk job.

Request body

mode'full' | 'failed_only' | 'from_row' | 'from_shard'

Which rows to reprocess.

startRowIndexinteger

Zero-based row to restart from. Required when mode is from_row.

startShardIndexinteger

Zero-based shard to restart from. Required when mode is from_shard.

Response

Restart accepted.

object required

Changes

Changed in 4 of the 8 revisions of this API.55

    • the allOf[ErrorResponse]/errors/items/instance response's property type/format changed from string/uri to string/uri-reference for status 400

      response-property-type-changed

    • the oneOf[InvalidApiKeyError]/allOf[ErrorResponse]/errors/items/instance response's property type/format changed from string/uri to string/uri-reference for status 401

      response-property-type-changed

    • the oneOf[MissingAuthenticationError]/allOf[ErrorResponse]/errors/items/instance response's property type/format changed from string/uri to string/uri-reference for status 401

      response-property-type-changed

    • the oneOf[ProfileNotFoundError]/allOf[ErrorResponse]/errors/items/instance response's property type/format changed from string/uri to string/uri-reference for status 404

      response-property-type-changed

    • the oneOf[ResourceNotFoundError]/allOf[ErrorResponse]/errors/items/instance response's property type/format changed from string/uri to string/uri-reference for status 404

      response-property-type-changed

    • added the media type application/json for the response with the status 200

      response-media-type-added

    • added the new optional request property mode

      new-optional-request-property

    • added the new optional request property startRowIndex

      new-optional-request-property

    • added the new optional request property startShardIndex

      new-optional-request-property

    • endpoint added

      endpoint-added