Skip to content

Get Upload Job Path

customerprofiles_get_upload_job_path R Documentation

This API retrieves the pre-signed URL and client token for uploading the file associated with the upload job

Description

This API retrieves the pre-signed URL and client token for uploading the file associated with the upload job.

Usage

customerprofiles_get_upload_job_path(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 the upload path for. This is generated from the CreateUploadJob API.

Value

A list with the following syntax:

list(
  Url = "string",
  ClientToken = "string",
  ValidUntil = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

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