Error code

Here is the list of error codes you might encounter in case of incorrect integration

HTTP CodeError descriptionError example
200Successful answer:
- init call: flow has been created
- step call: step has been added
* - check call: check has been performed
{
"token": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
400JSON payload is invalid{
"error": "json payload is invalid",
"description": [
{
"property": "json property name",
"message": "error message"
}
]
}
401Not authorized / invalid signature{
"error": "Not Authorize"
}
404Not found answer:
- init call: flow name not found
- step / check call: transaction ID not found
{
"error": "transaction id not found"
}
422Transaction ID is invalid{
"error": "transaction id is invalid"
}