Returns the status and details of a merge operation by its ID.
Rate limit category: Read
Get merge status
from lightfield import Lightfield
client = Lightfield(
api_key="My API Key",
)
merge_get_merge_response = client.merge.get_merge(
"id",
)
print(merge_get_merge_response.id){
"id": "id",
"createdAt": "createdAt",
"duplicateId": "duplicateId",
"entityType": "entityType",
"primaryId": "primaryId",
"status": "status",
"updatedAt": "updatedAt"
}Returns Examples
{
"id": "id",
"createdAt": "createdAt",
"duplicateId": "duplicateId",
"entityType": "entityType",
"primaryId": "primaryId",
"status": "status",
"updatedAt": "updatedAt"
}