Skip to main content

List Applications

Retrieve a list of all existing applications.

Endpoint:

GET /listApps

Headers:

Authorization: Bearer JWT token.

Request:

curl -X GET http://localhost:9000/listApps -H "Authorization: Bearer <jwt_token>"

Response:

{
"apps": [
{
"ID": "66ae18a29807f0696d967176",
"AppName": "first",
"Logo": "",
"Updated_at": "2024-08-03T14:46:42.361+03:00"
},
{
"ID": "66ae14024b663c058367f895",
"AppName": "myapp",
"Logo": "",
"Updated_at": "2024-08-03T14:26:58.701+03:00"
}
]
}