Skip to main content
GET
/
v2
/
sca_sessions
/
{sca-session-token}
Retrieve SCA session
curl --request GET \
  --url https://thirdparty.qonto.com/v2/sca_sessions/{sca-session-token}
{
  "result": "waiting",
  "canceled_at": ""
}

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Path Parameters

sca_session_token
string
required

Token retrieved when initiating a sensitive action. This token is only valid for 15 minutes.

Response

Returns the SCA session identified by the sca_session_token path parameter.

result
string
required

Available options:

  • waiting: if the user has not authorized the action yet;
  • deny: if the user refused the action (or more than 15 minutes passed);
  • allow: if the user has authorised the action.
Example:

"waiting"

canceled_at
string
required
Example:

""

I