Skip to content

Get Upload Job

customerprofiles_get_upload_job R Documentation

This API retrieves the details of a specific upload job

Description

This API retrieves the details of a specific upload job.

Usage

customerprofiles_get_upload_job(DomainName, JobId)

Arguments

DomainName

[required] The unique name of the domain containing the upload job.

JobId

[required] The unique identifier of the upload job to retrieve.

Value

A list with the following syntax:

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"
  ),
  Fields = list(
    list(
      Source = "string",
      Target = "string",
      ContentType = "STRING"|"NUMBER"|"PHONE_NUMBER"|"EMAIL_ADDRESS"|"NAME"
    )
  ),
  UniqueKey = "string",
  ResultsSummary = list(
    UpdatedRecords = 123,
    CreatedRecords = 123,
    FailedRecords = 123
  ),
  DataExpiry = 123
)

Request syntax

svc$get_upload_job(
  DomainName = "string",
  JobId = "string"
)