Batch Delete Unique Id
entityresolution_batch_delete_unique_id | R Documentation |
Deletes multiple unique IDs in a matching workflow¶
Description¶
Deletes multiple unique IDs in a matching workflow.
Usage¶
entityresolution_batch_delete_unique_id(inputSource, uniqueIds,
workflowName)
Arguments¶
inputSource |
The input source for the batch delete unique ID operation. |
uniqueIds |
[required] The unique IDs to delete. |
workflowName |
[required] The name of the workflow. |
Value¶
A list with the following syntax:
list(
deleted = list(
list(
uniqueId = "string"
)
),
disconnectedUniqueIds = list(
"string"
),
errors = list(
list(
errorType = "SERVICE_ERROR"|"VALIDATION_ERROR",
uniqueId = "string"
)
),
status = "COMPLETED"|"ACCEPTED"
)
Request syntax¶
svc$batch_delete_unique_id(
inputSource = "string",
uniqueIds = list(
"string"
),
workflowName = "string"
)