List Apps
GET/apps
Retrieve a list of apps filtered by app_name and org_id.
Args: app_name (Optional[str]): The name of the app to filter by. org_id (Optional[str]): The ID of the organization to filter by. stoken_session (SessionContainer): The session container.
Returns: List[App]: A list of apps filtered by app_name and org_id.
Raises: HTTPException: If there was an error retrieving the list of apps.
Request
Query Parameters
app_name App Name
org_id Org Id
workspace_id Workspace Id
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- ] 
app_id App Id (string)required
app_name App Name (string)required
[
  {
    "app_id": "string",
    "app_name": "string"
  }
]
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- Array [ 
- MOD1
- MOD2
- ] 
- ] 
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
  "detail": [
    {
      "loc": [
        "string",
        0
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
Loading...