TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 18 Type: Number This is the unique numeric identifier for the DataImportHistory |
ownerId READ-ONLY | "ownerId": 18 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. |
udrFeedId | "udrFeedId": 3 Type: Number Unique identifier for the associated UDRFeed object. |
udrFeedName | "udrFeedName": "Sample Name" Type: String The name of the object associated with the udrFeedId property. |
dataProfileId | "dataProfileId": 10 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. |
fileName | "fileName": "Hello World" Type: String |
importStart | "importStart": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
importEnd | "importEnd": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
importCount | "importCount": 22 Type: Number |
importExceptionCount | "importExceptionCount": 27 Type: Number |
importSkipRecordCount | "importSkipRecordCount": 17 Type: Number |
importDuplicateCount | "importDuplicateCount": 27 Type: Number |
recordCount | "recordCount": 18 Type: Number |
dataImportHistoryStatusTypeId | "dataImportHistoryStatusTypeId": 4 Type: Number Unique identifier for the associated DataImportHistoryStatusType object. |
dataImportHistoryStatusTypeName | "dataImportHistoryStatusTypeName": "Sample Name" Type: String The name of the object associated with the dataImportHistoryStatusTypeId property. |
dataImportUploadId | "dataImportUploadId": 1 Type: Number Unique identifier for the associated DataImportUpload object. |
dataImportUploadName | "dataImportUploadName": "Sample Name" Type: String The name of the object associated with the dataImportUploadId property. |
fileSize | "fileSize": "Hello World" Type: String |
progressPercent | "progressPercent": 12 Type: Number |
created READ-ONLY | "created": "2021-04-26T15:25:27.587Z" Type: Date This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format. |
createdByUserId | "createdByUserId": 12 Type: Number Unique identifier for the associated User object. |
createdByUserName | "createdByUserName": "Sample Name" Type: String The name of the object associated with the createdByUserId property. |
updated | "updated": "2021-04-26T15:25:27.587Z" Type: Date Date and time values are specified in the ISO 8601 format. |
The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.
PATCH operations can be used as a standard API call or nested within the envelope of a DataFlow. Below you will find the child objects that can be updated as part of PATCH operations for the DataImportHistory object.
Standard PATCH objects:
DataFlow PATCH objects:
DELETE | DataImport/History/{id} |
Delete an instance of the DataImportHistory object. Upon successful delete, this API will return a record of all of the reelated objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the DataImportHistory object. |
Delete an instance of the DataImportHistory object. DELETE DataImport/History/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "delete", "results": { "totalCount": 4, "items": [ { "identity": 1, "action": "deleted", "dtoTypeKey": "dataImportHistory" }, { "lhsId": 2, "rhsId": 2, "action": "detached", "dtoTypeKey": "sampleObjectConnector" }, { "foreignKeyIdentity": 2, "action": "deleted", "dtoTypeKey": "sampleObject" } ] } } |
GET | DataImport/History/ |
Retrieve all of the DataImportHistory objects. | |
Retrieve all of the DataImportHistory objects. GET DataImport/History/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 19, "ownerName": "Sample Text Data", "udrFeedId": 17, "udrFeedName": "Sample Text Data", "dataProfileId": 13, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 18, "importExceptionCount": 23, "importSkipRecordCount": 16, "importDuplicateCount": 4, "recordCount": 8, "dataImportHistoryStatusTypeId": 10, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 20, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 4, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 11, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } |
GET | DataImport/History/Metadata |
Retrieve all of the DataImportHistory objects. | |
Retrieve all of the DataImportHistory objects. GET DataImport/History/Metadata HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 20, "ownerName": "Sample Text Data", "udrFeedId": 2, "udrFeedName": "Sample Text Data", "dataProfileId": 16, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 22, "importExceptionCount": 24, "importSkipRecordCount": 17, "importDuplicateCount": 23, "recordCount": 1, "dataImportHistoryStatusTypeId": 0, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 15, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 9, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 8, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } |
GET | DataImport/History/Metadata/sql |
Retrieve all of the DataImportHistory objects. | |
Retrieve all of the DataImportHistory objects. GET DataImport/History/Metadata/sql HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 19, "ownerName": "Sample Text Data", "udrFeedId": 23, "udrFeedName": "Sample Text Data", "dataProfileId": 4, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 24, "importExceptionCount": 24, "importSkipRecordCount": 17, "importDuplicateCount": 18, "recordCount": 12, "dataImportHistoryStatusTypeId": 13, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 9, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 6, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 15, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } |
GET | DataImport/History/Paged |
Retrieve all of the DataImportHistory objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the DataImportHistory objects in a paged fashion. GET DataImport/History/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 0, "ownerName": "Sample Text Data", "udrFeedId": 14, "udrFeedName": "Sample Text Data", "dataProfileId": 24, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 26, "importExceptionCount": 3, "importSkipRecordCount": 10, "importDuplicateCount": 19, "recordCount": 18, "dataImportHistoryStatusTypeId": 1, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 4, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 8, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 13, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } } |
GET | DataImport/History/Paged/Detail |
Retrieve all of the DataImportHistory objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
Retrieve all of the DataImportHistory objects in a paged fashion with all object details. GET DataImport/History/Paged/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 12, "ownerName": "Sample Text Data", "udrFeedId": 11, "udrFeedName": "Sample Text Data", "dataProfileId": 7, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 16, "importExceptionCount": 11, "importSkipRecordCount": 25, "importDuplicateCount": 0, "recordCount": 3, "dataImportHistoryStatusTypeId": 19, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 4, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 27, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 7, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z", "details": { "sampleSingleObject": { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 }, "sampleMultipleObjects": { "totalCount": 1, "items": [ { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 } ] } } } ] } } |
GET | DataImport/History/{id} |
Retrieve an instance of the DataImportHistory object by its ID. | |
{id} | Unique identifier for the DataImportHistory object. |
Retrieve an instance of the DataImportHistory object by its ID. GET DataImport/History/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 25, "ownerName": "Sample Text Data", "udrFeedId": 20, "udrFeedName": "Sample Text Data", "dataProfileId": 2, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 6, "importExceptionCount": 24, "importSkipRecordCount": 21, "importDuplicateCount": 25, "recordCount": 15, "dataImportHistoryStatusTypeId": 4, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 3, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 19, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 14, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } } |
GET | DataImport/History/{id}/Detail |
Retrieve deep detail of the DataImportHistory object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the DataImportHistory object. |
Retrieve deep detail of the DataImportHistory object by its ID. GET DataImport/History/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 4, "ownerName": "Sample Text Data", "udrFeedId": 6, "udrFeedName": "Sample Text Data", "dataProfileId": 15, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 22, "importExceptionCount": 14, "importSkipRecordCount": 10, "importDuplicateCount": 11, "recordCount": 9, "dataImportHistoryStatusTypeId": 25, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 9, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 8, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 10, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z", "details": { "sampleSingleObject": { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 }, "sampleMultipleObjects": { "totalCount": 1, "items": [ { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 } ] } } } } |
GET | DataImport/History/{id}/Detail |
Retrieve deep detail of the DataImportHistory object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the DataImportHistory object. |
Retrieve deep detail of the DataImportHistory object by its ID. GET DataImport/History/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 25, "ownerName": "Sample Text Data", "udrFeedId": 19, "udrFeedName": "Sample Text Data", "dataProfileId": 15, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 17, "importExceptionCount": 25, "importSkipRecordCount": 13, "importDuplicateCount": 4, "recordCount": 27, "dataImportHistoryStatusTypeId": 14, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 12, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 25, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 11, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z", "details": { "sampleSingleObject": { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 }, "sampleMultipleObjects": { "totalCount": 1, "items": [ { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 } ] } } } } |
GET | DataImport/History/{id}/Detail |
Retrieve deep detail of the DataImportHistory object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the DataImportHistory object. |
Retrieve deep detail of the DataImportHistory object by its ID. GET DataImport/History/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 5, "ownerName": "Sample Text Data", "udrFeedId": 7, "udrFeedName": "Sample Text Data", "dataProfileId": 24, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 8, "importExceptionCount": 8, "importSkipRecordCount": 11, "importDuplicateCount": 24, "recordCount": 3, "dataImportHistoryStatusTypeId": 18, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 18, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 5, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 1, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z", "details": { "sampleSingleObject": { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 }, "sampleMultipleObjects": { "totalCount": 1, "items": [ { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 } ] } } } } |
GET | DataImport/History/{id}/Detail |
Retrieve deep detail of the DataImportHistory object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the DataImportHistory object. |
Retrieve deep detail of the DataImportHistory object by its ID. GET DataImport/History/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 27, "ownerName": "Sample Text Data", "udrFeedId": 25, "udrFeedName": "Sample Text Data", "dataProfileId": 14, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 10, "importExceptionCount": 25, "importSkipRecordCount": 0, "importDuplicateCount": 21, "recordCount": 22, "dataImportHistoryStatusTypeId": 22, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 26, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 19, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 19, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z", "details": { "sampleSingleObject": { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 }, "sampleMultipleObjects": { "totalCount": 1, "items": [ { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 } ] } } } } |
GET | DataImport/History/{id}/Detail |
Retrieve deep detail of the DataImportHistory object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the DataImportHistory object. |
Retrieve deep detail of the DataImportHistory object by its ID. GET DataImport/History/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "udrFeedId": 12, "udrFeedName": "Sample Text Data", "dataProfileId": 12, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 20, "importExceptionCount": 22, "importSkipRecordCount": 14, "importDuplicateCount": 15, "recordCount": 25, "dataImportHistoryStatusTypeId": 18, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 26, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 25, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 8, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z", "details": { "sampleSingleObject": { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 }, "sampleMultipleObjects": { "totalCount": 1, "items": [ { "identity": 2, "property1": "Sample Text", "property2": "2021-04-26T15:25:29.117Z", "property3": 2 } ] } } } } |
PATCH | DataImport/History/{id} |
Update or Add the DataImportHistory object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array. | |
{id} | Unique identifier for the DataImportHistory object. |
Update or Add the DataImportHistory object and optionally make changes to any child objects. PATCH DataImport/History/{id} { "details": {}, "dataImportHistorys": { "items": [ { "patchType": "create", "patchClientId": 1, "udrFeedId": 27, "dataProfileId": 13, "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 2, "importExceptionCount": 1, "importSkipRecordCount": 23, "importDuplicateCount": 12, "recordCount": 13, "dataImportHistoryStatusTypeId": 16, "dataImportUploadId": 11, "fileSize": "Sample Text Data", "progressPercent": 0, "createdByUserId": 18, "updated": "2021-04-26T15:25:27.587Z" } ] } } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "patch", "results": { "totalCount": 1, "items": [ { "identity": 1, "action": "created", "dtoTypeKey": "dataImportHistory", "instance": { "identity": 1, "ownerId": 15, "ownerName": "Sample Text Data", "udrFeedId": 6, "udrFeedName": "Sample Text Data", "dataProfileId": 0, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 6, "importExceptionCount": 23, "importSkipRecordCount": 21, "importDuplicateCount": 26, "recordCount": 2, "dataImportHistoryStatusTypeId": 8, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 23, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 25, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 9, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } } ] } } |
POST | DataImport/History/ |
Create a new instance of the DataImportHistory object. | |
Create a new instance of the DataImportHistory object. POST DataImport/History/ { "udrFeedId": 6, "dataProfileId": 2, "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 22, "importExceptionCount": 5, "importSkipRecordCount": 8, "importDuplicateCount": 16, "recordCount": 17, "dataImportHistoryStatusTypeId": 7, "dataImportUploadId": 14, "fileSize": "Sample Text Data", "progressPercent": 19, "createdByUserId": 23, "updated": "2021-04-26T15:25:27.587Z" } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "udrFeedId": 20, "udrFeedName": "Sample Text Data", "dataProfileId": 22, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 7, "importExceptionCount": 6, "importSkipRecordCount": 24, "importDuplicateCount": 3, "recordCount": 1, "dataImportHistoryStatusTypeId": 2, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 26, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 25, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 21, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } } |
PUT | DataImport/History/{id} |
Update an existing instance of the DataImportHistory object. | |
Update an existing instance of the DataImportHistory object. PUT DataImport/History/{id} { "identity": 1, "udrFeedId": 26, "dataProfileId": 23, "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 26, "importExceptionCount": 16, "importSkipRecordCount": 15, "importDuplicateCount": 4, "recordCount": 27, "dataImportHistoryStatusTypeId": 1, "dataImportUploadId": 2, "fileSize": "Sample Text Data", "progressPercent": 5, "createdByUserId": 16, "updated": "2021-04-26T15:25:27.587Z" } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 2, "ownerName": "Sample Text Data", "udrFeedId": 3, "udrFeedName": "Sample Text Data", "dataProfileId": 11, "dataProfileName": "Sample Text Data", "fileName": "Sample Text Data", "importStart": "2021-04-26T15:25:27.587Z", "importEnd": "2021-04-26T15:25:27.587Z", "importCount": 1, "importExceptionCount": 5, "importSkipRecordCount": 13, "importDuplicateCount": 25, "recordCount": 3, "dataImportHistoryStatusTypeId": 9, "dataImportHistoryStatusTypeName": "Sample Text Data", "dataImportUploadId": 1, "dataImportUploadName": "Sample Text Data", "fileSize": "Sample Text Data", "progressPercent": 24, "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 2, "createdByUserName": "Sample Text Data", "updated": "2021-04-26T15:25:27.587Z" } ] } } |