Skip to content

List Upload Jobs

customerprofiles_list_upload_jobs R Documentation

This API retrieves a list of upload jobs for the specified domain

Description

This API retrieves a list of upload jobs for the specified domain.

Usage

customerprofiles_list_upload_jobs(DomainName, MaxResults, NextToken)

Arguments

DomainName

[required] The unique name of the domain to list upload jobs for.

MaxResults

The maximum number of upload jobs to return per page.

NextToken

The pagination token from the previous call to retrieve the next page of results.

Value

A list with the following syntax:

list(
  NextToken = "string",
  Items = list(
    list(
      JobId = "string",
      DisplayName = "string",
      Status = "CREATED"|"IN_PROGRESS"|"PARTIALLY_SUCCEEDED"|"SUCCEEDED"|"FAILED"|"STOPPED",
      StatusReason = "VALIDATION_FAILURE"|"INTERNAL_FAILURE",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      CompletedAt = as.POSIXct(
        "2015-01-01"
      ),
      DataExpiry = 123
    )
  )
)

Request syntax

svc$list_upload_jobs(
  DomainName = "string",
  MaxResults = 123,
  NextToken = "string"
)