Get application list
GET/seb-api/v1/applications
Returns a list of applications.
Request
Query Parameters
name string
Optional name string to search in applications
url string
Optional url string to search in applications
Responses
- 200
- 400
- 403
- 500
A list of all application objects
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
appId integer
category string
id stringrequired
Unique identifier
name stringrequired
Name of the application
primaryUrl string
reputation integer
resetPasswordUrl string
routeToPrisma boolean
type string
urls string[]required
Url Pattenrs for the application
{
"data": [
{
"appId": 0,
"category": "string",
"id": "string",
"name": "string",
"primaryUrl": "string",
"reputation": 0,
"resetPasswordUrl": "string",
"routeToPrisma": true,
"type": "string",
"urls": [
"string"
]
}
]
}
Bad request
- application/json
- Schema
- Example (from schema)
Schema
errorResponse object
error string
message stringrequired
{
"errorResponse": {
"error": "string",
"message": "string"
}
}
Forbidden
Internal server error
Loading...