Hi,
To the target backend we want to pass a request as a form parameter (POST request). Target backend expects request as a string where we have a delimiter !-! separating each of the values. e.g
STG1sg2713831!-!xxxlove!-!true!-!false
However, i can also have another pattern separted with another delimiter ### and so on…
STG1sg2713832!-!xxxlove2!-!true!-!false
so the request that goes to target backend effectively can -
STG1sg2713831!-!xxxlove!-!true!-!false###STG1sg2713832!-!xxxlove2!-!true!-!false
From the apigee side how should it be handled. As it is an update it will be a PUT requsest.
I have these attributes -
I have identified groupName, groupMessage and flag1 and flag2.
But, these can be repeating attributes and moreover they are to be considered as a group.
What will be the best way to pass this value structure.
a. JSON format - { “key1”:{ }, “key2”:{ } ..}
b. Pass them as array
If there is any other better way please sugggest.