Skip to main content

Get Authentication Execution

Get Authentication Execution

Path Parameters
    workspaceName string required
    executionId string required
Header Parameters
    Authentication string
    Example: Bearer {{token}}

Response

idstring

Id of the Authentication flow

requirementstring

It specifies the authenticator is disabled or required or more

displayNamestring

Name of the the authenticator

requirementChoicesarray

It contains what are the available choices for this authenticator

configurableboolean

If the authenticator is configurable it will be true

providerIdstring

Provider id of the authenticator

multipleLoginAuthenticatorEnabledboolean

If it is multiple login authenticator and if it is enabled it will true.

levelnumber

It shows level of the authenticator

indexnumber

It show the position of the authenticator in flow

prioritynumber

It shows priority of the authenticator

hiddenboolean

This specifies the authenticator is hidden or not

Sample Response
[
{
"id": "57fb274c-f65e-4c45-a0e8-fafc1c6a3aaf",
"requirement": "REQUIRED",
"displayName": "miracl-pin-pad-redirector",
"requirementChoices": [
"REQUIRED",
"ALTERNATIVE",
"DISABLED"
],
"configurable": false,
"providerId": "miracl-identity-provider-redirector",
"multipleLoginAuthenticatorEnabled": false,
"level": 0,
"index": 0,
"priority": 0,
"hidden": false
},
{
"id": "4a95d077-20d3-4cf2-a39f-5f246daa2922",
"requirement": "REQUIRED",
"displayName": "email-onboarding-title",
"requirementChoices": [
"REQUIRED",
"DISABLED"
],
"configurable": true,
"providerId": "email-reg-authenticator",
"multipleLoginAuthenticatorEnabled": false,
"level": 0,
"index": 1,
"priority": 1,
"hidden": false
}
]
HTTP STATUS CODE SUMMARY
200 - OKSuccessfully done.
201 - OKSuccessfully created.
400 - Bad RequestThe request was unacceptable, often due to missing a required parameter.
401 - UnauthorizedUnauthorized access try with correct access.
402 - Request FailedThe parameters were valid but the request failed.
403 - ForbiddenThe Application doesn't have permissions to perform the request.
404 - Not FoundThe requested resource doesn't exist
500 - Server ErrorsSomething went wrong on ezto auth's end. (These are rare.)
503 - Server ErrorsService temporarily unavailable

Loading...