Skip to main content
GET
/
apps
JavaScript
import Morphik from 'morphik';

const client = new Morphik({
  apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});

const response = await client.cloud.listApps();

console.log(response);
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

authorization
string | null
X-Morphik-Admin-Secret
string | null

Query Parameters

org_id
string | null

Filter apps by organization ID

user_id
string | null

Filter apps by creator

app_id_filter
string | null

JSON filter expression for app IDs (supports $and/$or/$not/$nor and $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).

app_name_filter
string | null

JSON filter expression for app name (supports $and/$or/$not/$nor and $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).

limit
integer
default:100
Required range: 1 <= x <= 500
offset
integer
default:0
Required range: x >= 0

Response

Successful Response