Skip to main content
POST
/
api
/
v1
/
jobs
/
{jobId}
:retry
RetryJob
curl --request POST \
  --url https://your-sift-api-url.com/api/v1/jobs/{jobId}:retry \
  --header 'Authorization: Bearer <token>'
{
  "job": {
    "jobId": "<string>",
    "organizationId": "<string>",
    "createdByUserId": "<string>",
    "modifiedByUserId": "<string>",
    "createdDate": "2023-11-07T05:31:56Z",
    "modifiedDate": "2023-11-07T05:31:56Z",
    "startedDate": "2023-11-07T05:31:56Z",
    "completedDate": "2023-11-07T05:31:56Z",
    "jobType": "JOB_TYPE_UNSPECIFIED",
    "jobStatus": "JOB_STATUS_UNSPECIFIED",
    "jobStatusDetails": {
      "ruleEvaluation": {},
      "dataImport": {
        "pointsProcessed": "<string>",
        "pointsTotal": "<string>"
      },
      "dataExport": {
        "errorMessage": "<string>"
      }
    },
    "jobDetails": {
      "ruleEvaluation": {
        "reportId": "<string>"
      },
      "dataImport": {
        "dataImportId": "<string>"
      },
      "dataExport": {
        "request": {
          "timeRange": {
            "startTime": "2023-11-07T05:31:56Z",
            "stopTime": "2023-11-07T05:31:56Z"
          },
          "runsAndTimeRange": {
            "runIds": [
              "<string>"
            ],
            "startTime": "2023-11-07T05:31:56Z",
            "stopTime": "2023-11-07T05:31:56Z"
          },
          "assetsAndTimeRange": {
            "assetIds": [
              "<string>"
            ],
            "startTime": "2023-11-07T05:31:56Z",
            "stopTime": "2023-11-07T05:31:56Z"
          },
          "channelIds": [
            "<string>"
          ],
          "calculatedChannelConfigs": [
            {
              "name": "<string>",
              "expression": "<string>",
              "channelReferences": [
                {
                  "channelReference": "<string>",
                  "channelIdentifier": "<string>"
                }
              ],
              "units": "<string>"
            }
          ],
          "outputFormat": "EXPORT_OUTPUT_FORMAT_UNSPECIFIED",
          "exportOptions": {
            "useLegacyFormat": true,
            "simplifyChannelNames": true,
            "combineRuns": true,
            "splitExportByAsset": true,
            "splitExportByRun": true
          }
        },
        "storageKey": "<string>"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

jobId
string
required

Response

A successful response.

job
object