POST
/
ee
/
apps
JavaScript
import Morphik from 'morphik';

const client = new Morphik({
  apiKey: 'My API Key',
});

const app = await client.ee.apps.create({ app_name: 'app_name' });

console.log(app.app_id);
{
  "app_id": "<string>",
  "app_name": "<string>",
  "morphik_uri": "<string>",
  "status": "<string>"
}

Headers

authorization
string

Body

application/json

Response

201
application/json

Successful Response

The response is of type object.