Hello,

Is there any way in Kamailio to get the profile values the current dialog is part of?

For example, I have one dialog with the following profiles:

profiles: {
{
    test: abcd
}
    test: 1234
}

I need in the reply route to get the values for the test dialog profile. (abcd, 1234). I know I can use get_profile_size, but that will give the number of profiles of the current dialog, but I need the values to loop through.

Thanks.