Skip to content

Commit

Permalink
MAS-44 Update get party call response
Browse files Browse the repository at this point in the history
  • Loading branch information
myo-min-htet committed Feb 9, 2023
1 parent da337ca commit 3f60f0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public void configure() {
.log("Original body : ${body}")
.setProperty("senderReferenceID",simple("${body['senderReference']}"))
.//loopDoWhile(simple("${body['status']} == 'SENT FOR PROCESSING' || ${body['status']} == 'SENT FOR CONFIRMATION' || ${body['status']} == 'FOR CHECKING' || ${body['status']} == 'PROCESSING'"))
loopDoWhile(simple("${body['status']} != 'SUCCESS' || ${body['status']} != 'FAILED' "))
loopDoWhile(simple("${body['status']} == 'SENT FOR PROCESSING' || ${body['status']} == 'SENT FOR CONFIRMATION' || ${body['status']} == 'FOR CHECKING' || ${body['status']} == 'PROCESSING' ${body['status']} == 'CREATED' ${body['status']} == 'PROCESSING'"))
.toD("{{dfsp.host}}/api-apic/instapay?senderReference=${exchangeProperty.senderReferenceID}")
.unmarshal().json(JsonLibrary.Gson)
.log("Checking body : ${body}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
{
"idType": cml.header('idType'),
"idValue": cml.header('idValue'),
"lastName": payload.recipientName,
"displayName": payload.recipientName,
"lastName": cml.exchangeProperty("name"),
"displayName": cml.exchangeProperty("name"),
"extensionList": [
{
"key": "walletName",
Expand Down

0 comments on commit 3f60f0f

Please sign in to comment.