TAG LINE
TAG LINE
SMALL TITLE

Data Import

(API Version v9)


Retrieves the most recent DataImport upload instance.


What can you do with DataImport?


Properties

Property Details
identity
READ-ONLY
"identity": 22
Type: Number
This is the unique numeric identifier for the DataImport
ownerId
READ-ONLY
"ownerId": 12
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Hello World"
Type: String
The name of the Data Import.
dataProfileId
"dataProfileId": 5
Type: Number
Unique identifier for the associated DataProfile object.
dataProfileName
"dataProfileName": "Sample Name"
Type: String
The name of the object associated with the dataProfileId property.
envelopesPerRequest
"envelopesPerRequest": 8
Type: Number
The number of envelopes per request.
patchesPerEnvelope
"patchesPerEnvelope": 25
Type: Number
The number of patches per envelope.
stopOnError
"stopOnError": true
Type: Boolean
Indicates whether the import will stop if error encountered.


End Points

GETDataImport/{id}/LastUpload
Retrieve the most recent DataImportUpload instance.
{id}Unique identifier for the DataImport object.
Retrieve the most recent DataImportUpload instance.
GET DataImport/{id}/LastUpload
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 17,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "dataProfileId": 3,
        "dataProfileName": "Sample Text Data",
        "envelopesPerRequest": 18,
        "patchesPerEnvelope": 21,
        "stopOnError": true
    }
}