Hello everyone, I’m encountering an error while specifying routing order. when I mentioned routing order as 1 & 2 for two signers it is throwing an error
"errorCode\":\"RECIPIENT_NOT_IN_SEQUENCE\",\"message\":\"The token for an out of sequence recipient cannot be generated.
And when i changed routing orders as 0 & 1, then it was working.
Is there any particular sequence or any mistake in the previous routing order??
And even though it worked, the second signer can open the link before the first signer which is incorrect to the routing order!!
this is my payload for that request.
{
"recipient": {
"signers": [
{
"email": "test101@gmail.com",
"name": "test-101",
"clientUserId": "101",
"signHere": {
"anchorXOffset": "250",
"anchorYOffset": "500",
"documentId": "1",
"pageNumber": "1"
},
"routingOrder": "0"
},
{
"email": "test102@gmail.com",
"name": "test-102",
"clientUserId": "102",
"signHere": {
"anchorXOffset": "250",
"anchorYOffset": "500",
"documentId": "1",
"pageNumber": "1"
},
"routingOrder": "1"
}
]
},
"document": {
"documentBase64": "base64string",
"documentId": "1",
"fileExtension": "pdf",
"name": "lorum-ipsum.pdf"
}
}