Poll the realization status of an authentication inquiry.
POST
/status-poll
const url = 'https://connect-api.sudomimus.com/status-poll';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"exposureKey":"example","hiddenKey":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://connect-api.sudomimus.com/status-poll \ --header 'Content-Type: application/json' \ --data '{ "exposureKey": "example", "hiddenKey": "example" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
exposureKey
required
string
hiddenKey
required
string
Example generated
{ "exposureKey": "example", "hiddenKey": "example"}Responses
Section titled “ Responses ”Current status of the inquiry.
Media type application/json
default
Section titled “default ”Error response.
Media type application/json
Error response body. The Connect service emits { "reason": "<SymbolDescription>" }
for known failure modes. When the reason symbol’s description begins with
PRIVATE, the body is empty (zero bytes) and only the HTTP status carries
signal — both reason and the body itself are absent in that case.
object
reason
Stable machine-readable reason code.
string
Example generated
{ "reason": "example"}