Question:
What is the difference between _byCrosswalk vs. _slice APIs?
Answer:
_slice
curl --location 'https://ENVIRONMENT.reltio.com/reltio/api/TENANTID/entities/1kIYFFl/_slice?crosswalkValue=HERB240723' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--header 'source-system: configuration/sources/HDMS'
Is basically the same as
_byCrosswalk
curl --location 'https://ENVIRONMENT.reltio.com/reltio/api/TENANTID/entities/_byCrosswalk/HERB240723?type=HDMS&options=ovOnly&select=type%2Cattributes%2Ccrosswalks' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json'
ONLY DIFFERENCE IS THAT _byCrosswalk will provide Cleansers in the crosswalk section from the whole entity.
Comments
Please sign in to leave a comment.