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(workflowName, inputSource,
uniqueIds)
Arguments¶
workflowName |
[required] The name of the workflow. |
inputSource |
The input source for the batch delete unique ID operation. |
uniqueIds |
[required] The unique IDs to delete. |
Value¶
A list with the following syntax:
list(
status = "COMPLETED"|"ACCEPTED",
errors = list(
list(
uniqueId = "string",
errorType = "SERVICE_ERROR"|"VALIDATION_ERROR"
)
),
deleted = list(
list(
uniqueId = "string"
)
),
disconnectedUniqueIds = list(
"string"
)
)
Request syntax¶
svc$batch_delete_unique_id(
workflowName = "string",
inputSource = "string",
uniqueIds = list(
"string"
)
)