GET
/
v2
/
apps
/
{appSlug}
cURL
curl --request GET \
  --url https://api.eda.prisme.ai/v2/apps/{appSlug} \
  --header 'Authorization: Bearer <token>'
{
  "workspaceId": "<string>",
  "versions": [
    "<string>"
  ],
  "name": "<string>",
  "description": {
    "fr": "Bonjour",
    "en": "Hello"
  },
  "documentation": {
    "workspaceSlug": "<string>",
    "slug": "<string>"
  },
  "config": {
    "schema": {},
    "block": "<string>",
    "value": "<any>"
  },
  "photo": "<string>",
  "labels": [
    "<string>"
  ],
  "slug": "<string>",
  "updatedAt": "<string>",
  "createdAt": "<string>",
  "updatedBy": "<string>",
  "createdBy": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

appSlug
string
required

App unique id

Query Parameters

version
string

App version

Response

Success Response

workspaceId
string
required
slug
string
required
versions
name
string
description
Example:
{ "fr": "Bonjour", "en": "Hello" }
documentation
object
config
object
photo
string
labels
string[]
updatedAt
string
createdAt
string
updatedBy
string
createdBy
string