Method | Endpoint | Description |
|---|---|---|
GET | <baseApiUrl><prefix>/precedence-tiers | Retrieve the list of all published precedence tiers. |
GET | <baseApiUrl><prefix>/precedence-tiers/{ID} | Retrieve the draft or published version of a specified precedence tier. |
Parameter | Type | Description |
|---|---|---|
offset | Integer | Optional. Specify the record number from which to begin returning assets. The default value is zero. |
limit | Integer | Optional. Specify the total number of records to return. The default value is 500. |
fetchDraft | Boolean | Optional. Retrieve the draft version of a specified precedence tier. When using the <baseApiUrl><prefix>/precedence-tiers/{ID} endpoint, use fetchDraft=true.The default value is false. Note: To retrieve the draft version of all precedence tiers, see Retrieve assets in the catalog. |
Method | Endpoint | Description |
|---|---|---|
POST | <baseApiUrl><prefix>/precedence-tiers | Create new precedence tiers. |
Parameter | Type | Description |
|---|---|---|
name | String | Required. Specify the name of the asset. |
externalId | String | Optional. Specify the external identifier of the asset. |
description | String | Optional. Specify the description of the asset. |
rank | Integer | Required. Specify the rank of the asset. An error occurs if an asset exists with the same rank. |
stakeholders | Object | Optional. Specify the following attributes to add a stakeholder to the asset. stakeholderId: The internal ID of the stakeholder. You can find this ID by looking at the URL of the stakeholder page in Data Governance and Catalog. roleId: The internal ID of the role for the stakeholder. You can find this ID in the role details in Administrator. Navigate to the User Roles page, open the user role, and copy the ID at the end of the URL. stakeholderType: Specify whether the stakeholder is a USER or GROUP. |
Method | Endpoint | Description |
|---|---|---|
PUT | <baseApiUrl><prefix>/precedence-tiers/{ID} | Replace a specified precedence tier. |
PATCH | <baseApiUrl><prefix>/precedence-tiers/{ID} | Modify the details of a specified precedence tier. |
Parameter | Type | Description |
|---|---|---|
name | String | Required. Specify the name of the asset. |
externalId | String | Optional. Specify the external identifier of the asset. |
description | String | Optional. Specify the description of the asset. |
rank | Integer | Required. Specify the rank of the asset. An error occurs if an asset exists with the same rank. |
stakeholders | Object | Optional. Specify the following attributes to add a stakeholder to the asset. stakeholderId: The internal ID of the stakeholder. You can find this ID by looking at the URL of the stakeholder page in Data Governance and Catalog. roleId: The internal ID of the role for the stakeholder. You can find this ID in the role details in Administrator. Navigate to the User Roles page, open the user role, and copy the ID at the end of the URL. stakeholderType: Specify whether the stakeholder is a USER or GROUP. |
Method | Endpoint | Description |
|---|---|---|
DELETE | <baseApiUrl><prefix>/precedence-tiers/{ID} | Delete a specified precedence tier. |