Adobe Sign Power Automate - Get the Status of an Agreement Problem
I've got a flow that's sending an agreement, with two approver steps. The first approver step has two approvers, only one of which is required to approve.
When the one of the two first approvers signs, the agreement gets sent to the second approver step and the other first approver is no longer able to sign as their step has been completed (as expected). If I log into Adobe Sign then I can see the first approval step has been completed and it's been sent to second approval step.
However, the approval status I get back from the Adobe Sign connectors suggests that the first approval step isn't yet complete. It's not a timing issue, as I can go and get the status at a later time and it still shows the same.
This is the json coming back after the first approval step is completed and the approval has been sent to the second step approvers.
[
{
"memberInfos": [
{
"id": "abcde",
"email": "name1@approvalstep1.com",
"status": "ACTIVE"
},
{
"id": "fghij",
"email": "name2@approvalstep1.com",
"status": "ACTIVE"
}
],
"order": 1,
"role": "SIGNER",
"status": "WAITING_FOR_OTHERS",
"id": "klmno"
},
{
"memberInfos": [
{
"id": "pqrst",
"email": "name3@approvalstep2.com",
"status": "ACTIVE"
}
],
"order": 2,
"role": "APPROVER",
"status": "NOT_YET_VISIBLE",
"id": "uvwxy"
}
]
Anyone else seen this issue?
