Client Tracking Id for built in triggers in logic app standard

Sumit Gaur 235 Reputation points
2024-03-04T07:21:27.4033333+00:00

Hi,

i have seen that for lots of build in connectors we don't have a support for adding a custom client tracking id on the trigger e.g., when a blob is received.

there is indeed a tracking id option like you get on actions but it doesn't seem to work an capture the id and sometime causes the trigger to not work.

we do have this option in service bus and http trigger but i could lot of other adapter missing this .e.g. Blob trigger, SFTP trigger.

is there a way we can add a custom client tracking id from the metadata received in trigger, is it possible that is not supported through the UI but is supported on the workflow code level?

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,135 questions
{count} votes

1 answer

Sort by: Most helpful
  1. VenkateshDodda-MSFT 20,696 Reputation points Microsoft Employee
    2024-03-27T01:27:32.69+00:00

    @Sumit Gaur Thanks for your follow-up on this. apologize for the delay in response.

    Our internal team has confirmed that adding client tracking id from UI is not supported for all the connectors.

    Alternatively, you can the below code block in code view under the trigger in your workflow in order to get the tracking id.

    "correlation": {
                        "clientTrackingId": "<tracking id>"
                    },
    

    Hope this helps, let me know if you have any further questions on this.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.