Dpk_publish

Publish an DPK app. Supply the dpk settings in the body request to create the object.

SecuritybearerAuth
Request
Request Body schema: application/json
name
required
string

The app name

version
string

The app version

categories
Array of strings

List of categories linked to the app

displayName
string

The display Name

description
string

description of the dpk

icon
string

icon style - should present in the ui platform

tags
Array of strings

List of tags linked to the app

required
object (Codebase)
scope
string

the scope is belong to

trusted
boolean
required
object
Responses
200

Ok

post/app-registry
Request samples
application/json
{
  • "name": "string",
  • "version": "string",
  • "categories": [
    ],
  • "displayName": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "codebase": {
    },
  • "scope": "string",
  • "trusted": true,
  • "components": {
    }
}
Response samples
application/json
{
  • "id": "string",
  • "name": "string",
  • "url": "string",
  • "version": "string",
  • "categories": [
    ],
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "creator": "string",
  • "displayName": "string",
  • "description": "string",
  • "icon": "string",
  • "tags": [
    ],
  • "codebase": {
    },
  • "trusted": true,
  • "scope": "string",
  • "latest": true,
  • "components": {
    }
}