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);curl https://api.morphik.ai/apps \
-H "Authorization: Bearer $MORPHIK_API_KEY"{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}API Reference
List Cloud Apps
List provisioned apps for the specified organization/user.
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);curl https://api.morphik.ai/apps \
-H "Authorization: Bearer $MORPHIK_API_KEY"{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Query Parameters
Filter apps by organization ID
Filter apps by creator
JSON filter expression for app IDs (supports $and/$or/$not/$nor and $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).
JSON filter expression for app name (supports $and/$or/$not/$nor and $eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$regex/$contains).
Required range:
1 <= x <= 500Required range:
x >= 0Response
Successful Response
Was this page helpful?

