Updated on 2022-08-15 GMT+08:00

Creating an Application

Function

An application is a service system with complete functions and consists of one or more components related to features.

This API is used to create an application.

URI

POST /v2/{project_id}/cas/applications

Table 1 Path parameters

Parameter

Type

Mandatory

Description

project_id

String

Yes

Tenant's project ID.

Request

Table 2 Request parameters

Parameter

Type

Mandatory

Description

name

String

Yes

Application name.

The value contains 2 to 64 characters consisting of letters, digits, hyphens (-), and underscores (_). It starts with a letter and ends with a letter or digit.

description

String

No

Application description.

The value can contain up to 128 characters.

enterprise_project_id

String

No

Enterprise project ID. Default value: 0.

Response

Table 3 Response parameters

Parameter

Type

Description

id

String

Application ID.

name

String

Application name.

description

String

Application description.

creator

String

Creator.

project_id

String

Project ID.

enterprise_project_id

String

Enterprise project ID.

create_time

Integer

Creation time.

update_time

Integer

Update time.

unified_model

String

Whether to enable the unified model.

Example

Example request

{
	"name": "app-xpmtii",
	"description": "test"
}

Example response

{
	"id": "e5213b62-0e3c-476f-9960-3e4108787350",
	"name": "app-xpmtii",
	"description": "test",
	"project_id": "e7d2e9c589e5445e808a8ff0d1235aca",
	"enterprise_project_id": "0",
	"creator": "ss-test",
	"create_time": 1610432385245,
	"update_time": 1610432385245,
	"unified_model": null
}

Status Code

Table 4 Status codes

Status Code

Description

200

OK

400

Bad Request

404

Not Found

500

Internal Server Error

Error Code

Error code must be in the format of SVCSTG.00100.[Error_ID]. Example: SVCSTG.00100400. See Error Codes of Application Management APIs.