Get application
GET/seb-api/v1/applications/:id/plugins
Retrieves the plugin associated with the application ID
Request
Path Parameters
id stringrequired
The ID of the application to retrieve the plugin for
Responses
- 200
- 400
- 403
- 404
- 500
A single plugin associated with the application ID
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- Array [
- ]
- ]
- Array [
- ]
applicationId stringrequired
Application ID of the application the plugin is associated to
createTime date-timerequired
Creation time of the plugin
id stringrequired
Unique identifier
plugin objectrequired
elements object[]
elementType stringrequired
Possible values: [excludeAccountShield
, includeAccountShield
]
selectors string[]required
urlPattern string
events object[]
eventType stringrequired
Possible values: [loginFail
, loginAttempt
, passwordReset
, userRegistration
]
headers object[]
content stringrequired
name stringrequired
maxContentLength integer
method string
Possible values: [GET
, POST
, PUT
, PATCH
, DELETE
]
minContentLength integer
requestUrl string
statusCode integer
triggerOnFail boolean
triggerOnSuccess boolean
triggerUrl string
links object[]
loginPageUrl string
resetPasswordUrl string
urlPattern string
updateTime date-timerequired
Last update time of the plugin
{
"applicationId": "string",
"createTime": "2024-07-29T15:51:28.071Z",
"id": "string",
"plugin": {
"elements": [
{
"elementType": "excludeAccountShield",
"selectors": [
"string"
],
"urlPattern": "string"
}
],
"events": [
{
"eventType": "loginFail",
"headers": [
{
"content": "string",
"name": "string"
}
],
"maxContentLength": 0,
"method": "GET",
"minContentLength": 0,
"requestUrl": "string",
"statusCode": 0,
"triggerOnFail": true,
"triggerOnSuccess": true,
"triggerUrl": "string"
}
],
"links": [
{
"loginPageUrl": "string",
"resetPasswordUrl": "string",
"urlPattern": "string"
}
]
},
"updateTime": "2024-07-29T15:51:28.071Z"
}
Bad request
- application/json
- Schema
- Example (from schema)
Schema
errorResponse object
error string
message stringrequired
{
"errorResponse": {
"error": "string",
"message": "string"
}
}
Forbidden
Plugin not found
Internal server error
Loading...