Obtaining an Application
Function
Obtain the application.
Calling Method
For details, see Calling APIs.
URI
GET /v2/{project_id}/design/approvals
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
project_id |
Yes |
String |
Project ID. For details about how to obtain the project ID, see Project ID and Account ID. |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
biz_id |
No |
String |
Business definition ID, which is a string |
|
name |
No |
String |
Fuzzy query by name or code. |
|
create_by |
No |
String |
Query by creator. |
|
approver |
No |
String |
Query by reviewer. |
|
approval_status |
No |
String |
Application status. Options:
|
|
approval_status_detail |
No |
String |
Application status. Options:
|
|
approval_type |
No |
String |
Service review type. Options:
|
|
biz_type |
No |
String |
Query by service type. The options are ATOMIC_INDEX (atomic indicator), DERIVATIVE_INDEX (derivative indicator), DIMENSION (dimension), and TIME_CONDITION (time filter). DIMENSION_LOGIC_TABLE (dimension table), FACT_LOGIC_TABLE (fact table), AGGREGATION_LOGIC_TABLE (summary table), TABLE_MODEL (relational modeling table), CODE_TABLE (code table), STANDARD_ELEMENT) (data standard), BIZ_METRIC (business metric), COMPOUND_METRIC (compound metric), SUBJECT (subject), ATOMIC_METRIC (atomic metric (new)), DERIVED_METRIC (Derivative (new)), COMPOSITE_METRIC (Compound (new))). |
|
begin_time |
No |
String |
Left boundary of time filtering. This parameter is used together with end_time. Only time range filtering is supported. Unilateral filtering is invalid. The format complies with RFC3339 and is accurate to seconds. The UTC time zone is yyyy-mm-ddTHH:MM:SSZ, for example, 1970-01-01T00:00:00Z. |
|
end_time |
No |
String |
Right boundary for time filtering. This parameter is used together with begin_time to support only time range filtering. The format complies with RFC3339 and is accurate to seconds. The UTC time zone is yyyy-mm-ddTHH:MM:SSZ, for example, 1970-01-01T00:00:00Z. |
|
limit |
No |
Integer |
Number of records to be queried on each page, that is, Y records to be queried. The default value is 50, and the value range is [1,100]. |
|
offset |
No |
Integer |
Start coordinate of the query, that is, the number of skipped data records. The value can only be 0 or an integer multiple of limit. If the value does not meet the requirement, the value is rounded down. The default value is 0. |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
X-Auth-Token |
Yes |
String |
IAM token, which is obtained by calling the IAM API for obtaining a user token (value of X-Subject-Token in the response header). This field is mandatory for authentication using tokens. |
|
workspace |
Yes |
String |
Workspace ID. For details about how to obtain the workspace ID, see Instance ID and Workspace ID. |
|
X-Project-Id |
No |
String |
Project ID. For details about how to obtain the project ID, see Project ID and Account ID. This parameter is mandatory for API requests that use AK/SK authentication in multi-project scenarios. |
|
Content-Type |
No |
String |
Default value: application/json;charset=UTF-8 This parameter is optional. If the body is available, this parameter is mandatory. If the body is unavailable, you do not need to set this parameter or verify it. |
Response Parameters
Status code: 200
|
Parameter |
Type |
Description |
|---|---|---|
|
data |
data object |
data: unified outermost data structure of the returned result. |
|
Parameter |
Type |
Description |
|---|---|---|
|
value |
value object |
value: unified outer data structure of the returned result. |
|
Parameter |
Type |
Description |
|---|---|---|
|
total |
Integer |
Total number. |
|
records |
Array of ApprovalVO objects |
Number of queried application object (ApprovalVO) groups. |
|
Parameter |
Type |
Description |
|---|---|---|
|
id |
String |
Application ID, which is a string |
|
tenant_id |
String |
Project ID. For details about how to obtain the project ID, see the API path parameter project_id. |
|
name_ch |
String |
Chinese name of a service. |
|
name_en |
String |
English name of a service. |
|
biz_id |
String |
Business ID, which is a string |
|
biz_type |
String |
Business entity type. Options:
|
|
biz_info |
String |
Serialized service details. The type is string. |
|
biz_info_obj |
Object |
Service details. The type is object. |
|
biz_version |
Integer |
Service version. |
|
biz_status |
String |
Release status of an entity. This parameter is read-only and does not need to be set during creation and update. Options:
|
|
approval_status |
String |
Service approval status. This parameter is read-only. Options:
|
|
approval_type |
String |
Service review type. Options:
|
|
submit_time |
String |
Submitted At |
|
create_by |
String |
Creator. |
|
l1 |
String |
Chinese name of the subject area group. This parameter is read-only and does not need to be set when you create or update a subject area group. |
|
l2 |
String |
Chinese name of the subject area. This parameter is read-only and does not need to be set during creation and update. |
|
l3 |
String |
Chinese name of the business object. This parameter is read-only and does not need to be set during creation and update. |
|
approval_time |
String |
Review time. |
|
approver |
String |
Reviewer. |
|
|
String |
Email address of the reviewer. |
|
msg |
String |
Review information. |
|
directory_path |
String |
Directory tree. |
Status code: 400
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code, for example, DS.6000, indicating that the request fails to be processed. |
|
error_msg |
String |
Error message |
|
data |
Object |
Returned data information. |
Status code: 401
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code, for example, DS.6000, indicating that the request fails to be processed. |
|
error_msg |
String |
Error message |
|
data |
Object |
Returned data information. |
Status code: 403
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code, for example, DS.6000, indicating that the request fails to be processed. |
|
error_msg |
String |
Error message |
|
data |
Object |
Returned data information. |
Status code: 404
|
Parameter |
Type |
Description |
|---|---|---|
|
error_code |
String |
Error code, for example, DS.6000, indicating that the request fails to be processed. |
|
error_msg |
String |
Error message |
|
data |
Object |
Returned data information. |
Example Requests
Query information about applications in the Approving state by page.
GET https://{endpoint}/v2/{project_id}/design/approvals?offset=1&limit=10&approval_status=DEVELOPING&is_approval_time=false
Example Responses
Status code: 200
This operation is successful. The returned data is the ApprovalVO array and the total number of records.
{
"data" : {
"value" : {
"total" : 1,
"records" : [ {
"id" : "1230929439261609984",
"tenant_id" : "0833a5737480d53b2f25c010dc1a7b88-workspace-9ce2cfd08fda4f3b95faa5ba65fa5ec3",
"name_ch" : "test_0408",
"name_en" : "test_0408",
"biz_id" : "1226923406239399936",
"biz_type" : "TABLE_MODEL",
"biz_info" : "{}",
"biz_info_obj" : {
"id" : "1226923406239399936",
"model_id" : "1183882892003127296",
"parent_table_id" : null,
"parent_table_name" : null,
"parent_table_code" : null,
"related_logic_table_id" : null,
"related_logic_table_name" : null,
"related_logic_table_model_id" : null,
"related_logic_table_model_name" : null,
"model" : null,
"data_format" : "Parquet",
"obs_bucket" : null,
"obs_location" : null,
"configs" : "{}",
"table_type" : "DWS_ROW",
"owner" : "",
"tb_name" : "test_0408",
"dw_id" : "d2d09df46d5745ceaa0702c9245852fa",
"db_name" : null,
"queue_name" : null,
"schema" : null,
"extend_info" : "{\"compression\":\"NO\",\"dirtyOutDatabase\":\"\",\"dirtyOutPrefix\":\"\",\"dirtyOutSuffix\":\"\",\"dirtyOutSwitch\":\"false\",\"distribute\":\"HASH\"}",
"tb_guid" : null,
"tb_id" : null,
"logic_tb_name" : "test_0408",
"logic_tb_guid" : "",
"description" : "None",
"status" : "DRAFT",
"logic_tb_id" : null,
"biz_catalog_id" : "1193142949320474624",
"catalog_path" : null,
"create_by" : "test_uesr",
"update_by" : "test_uesr",
"create_time" : "2024-04-08T15:55:35+08:00",
"update_time" : "2024-04-17T16:20:47+08:00",
"tags" : [ ],
"approval_info" : null,
"new_biz" : null,
"attributes" : [ {
"id" : "1226923406327480320",
"name_en" : "aa",
"name_ch" : "aa",
"description" : "",
"obs_location" : null,
"create_by" : null,
"update_by" : null,
"data_type" : "BIGINT",
"domain_type" : "NUMBER",
"data_type_extend" : "",
"is_primary_key" : false,
"is_partition_key" : false,
"is_foreign_key" : false,
"extend_field" : false,
"not_null" : false,
"ordinal" : 1,
"table_model_id" : null,
"create_time" : "2024-04-08T15:55:35+08:00",
"update_time" : "2024-04-17T16:20:47+08:00",
"tags" : [ ],
"secrecy_levels" : [ ],
"stand_row_id" : null,
"stand_row_name" : null,
"quality_infos" : null,
"alias" : "",
"self_defined_fields" : [ {
"fd_name_ch" : "aa",
"fd_name_en" : "aa",
"not_null" : false,
"fd_value" : ""
}, {
"fd_name_ch" : "bb",
"fd_name_en" : "bb",
"not_null" : false,
"fd_value" : ""
} ],
"code" : "",
"related_logic_attr_id" : null,
"related_logic_attr_name" : null,
"related_logic_attr_name_en" : null
}, {
"id" : "1226923406327480321",
"name_en" : "bb",
"name_ch" : "bb",
"description" : "",
"obs_location" : null,
"create_by" : null,
"update_by" : null,
"data_type" : "BIGINT",
"domain_type" : "NUMBER",
"data_type_extend" : "",
"is_primary_key" : false,
"is_partition_key" : false,
"is_foreign_key" : false,
"extend_field" : false,
"not_null" : false,
"ordinal" : 2,
"table_model_id" : null,
"create_time" : "2024-04-08T15:55:35+08:00",
"update_time" : "2024-04-17T16:20:47+08:00",
"tags" : [ ],
"secrecy_levels" : [ ],
"stand_row_id" : null,
"stand_row_name" : null,
"quality_infos" : null,
"alias" : "",
"self_defined_fields" : [ {
"fd_name_ch" : "aa",
"fd_name_en" : "aa",
"not_null" : false,
"fd_value" : ""
}, {
"fd_name_ch" : "bb",
"fd_name_en" : "bb",
"not_null" : false,
"fd_value" : ""
} ],
"code" : "",
"related_logic_attr_id" : null,
"related_logic_attr_name" : null,
"related_logic_attr_name_en" : null
} ],
"mappings" : null,
"relations" : [ ],
"dw_type" : "DWS",
"dw_name" : null,
"l1" : null,
"l2" : null,
"l3" : null,
"l1_id" : null,
"l2_id" : null,
"l3_id" : "1193142949320474624",
"partition_conf" : null,
"dlf_task_id" : null,
"use_recently_partition" : false,
"reversed" : null,
"dirty_out_switch" : false,
"dirty_out_database" : "",
"dirty_out_prefix" : "",
"dirty_out_suffix" : "",
"quality_owner" : null,
"quality_id" : null,
"distribute" : "HASH",
"distribute_column" : null,
"compression" : "NO",
"pre_combine_field" : null,
"is_partition" : false,
"physical_table" : "CREATE_FAILED",
"dev_physical_table" : "NO_NEED",
"technical_asset" : "CREATE_FAILED",
"business_asset" : "CREATE_SUCCESS",
"meta_data_link" : "UPDATE_FAILED",
"data_quality" : "NO_NEED",
"summary_status" : "SUMMARY_FAILED",
"dev_version" : null,
"prod_version" : null,
"dev_version_name" : null,
"prod_version_name" : null,
"env_type" : "PROD_TYPE",
"alias" : null,
"self_defined_fields" : [ {
"fd_name_ch" : "User-defined item 1",
"fd_name_en" : "selfDefine1",
"not_null" : false,
"fd_value" : ""
}, {
"fd_name_ch" : "User-defined item 2",
"fd_name_en" : "selfDefine2",
"not_null" : true,
"fd_value" : "aaa"
} ],
"code" : null,
"has_related_physical_table" : false,
"has_related_logic_table" : false
},
"biz_version" : 0,
"biz_status" : "PUBLISH_DEVELOPING",
"approval_status" : "DEVELOPING",
"approval_type" : "PUBLISH",
"submit_time" : "2024-04-19T17:14:08+08:00",
"create_by" : "test_uesr",
"l1" : "test_import",
"l2" : null,
"l3" : null,
"approval_time" : "2024-04-19T17:14:08+08:00",
"approver" : "test_uesr",
"email" : null,
"msg" : null,
"directory_path" : null
} ]
}
}
}
Status code: 400
BadRequest
{
"error_code" : "DS.60xx",
"error_msg" : "The user request is illegal."
}
Status code: 401
Unauthorized
{
"error_code" : "DS.60xx",
"error_msg" : "User authentication failed."
}
Status code: 403
Forbidden
{
"error_code" : "DS.60xx",
"error_msg" : "The user does not have permission to call this API."
}
Status code: 404
Not Found
{
"error_code" : "DS.60xx",
"error_msg" : "The User Request API does not exist."
}
Status Codes
|
Status Code |
Description |
|---|---|
|
200 |
This operation is successful. The returned data is the ApprovalVO array and the total number of records. |
|
400 |
BadRequest |
|
401 |
Unauthorized |
|
403 |
Forbidden |
|
404 |
Not Found |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.