I get Entra ID users via an HTTP GET method, which are then created via an HTTP Post method in Microsoft Saleshub.
Structure:
HTTP GET Entra ID User
JSON Analyzer
{
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"surname": {
"type": "string"
}
}
}
}
}
}
HTTP GET Saleshub User
JSON Analyzer
{
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"lastname": {
"type": "string"
}
}
}
}
}
}
For each (value)
HTTP POST (Saleshub surname)
If I now execute the flow again, all the contacts created are recreated.
How can I configure the flow so that it only creates contacts that have not yet been created?
I got it: