Apps

Retrieve a list of the apps (models) in your account.

The apps endpoint is available via GET at:

https://api.usesummit.com/v1/apps

You can call this paginated endpoint to get some basic information on your apps.

Example response

{
	"total": 1,
	"apps": [
		{
			"id": ":uuid_v4",
			"app_identifier": ":organization_slug/:external_id/:app_slug",
			"name": "Your app name",
			"description": "Your app description"
		},
	],
	"next": null,
	"previous": null
}

Difference between app ID & app identifier

The ID is Summit's internal UUID for your app. You can be sure that this will never change for your app.

The app identifier is a more human-readable identifier, consisting of your organization's slug, an external ID, and your app's slug. This app identifier is what you use to run your app from your own code, or to embed your app in your pages.