Data Marketplace customizationsYou can personalize the look and feel of Data Marketplace according to your organization's requirements.
You must have the Data Marketplace Administrator profile to customize the look and feel of your organization's Data Marketplace instance.
Retrieve customizations Use REST APIs to retrieve the details of the customizations applied to your Data Marketplace instance.
Endpoint and method The following table describes the connection properties for the API:
Property
Description
Endpoint
/api/v1/integration/admin/settings/customizations/lookandfeel
Method
GET
Note: Before you call this API, consider the following:
• If you use an Application Integration system service action to invoke this API, you can call a maximum of 100 APIs per minute.• If you use JWT authentication to invoke this API, you can call a maximum of 120 APIs per minute and 10,000 APIs per day.Request The API has no payload.
Example request The following example shows how you can use an API to retrieve the details of the customizations applied to your Data Marketplace instance:
https://{{CDMP_URL}}/api/v1/integration/admin/settings/customizations/lookandfeel
Response When you pass the API query parameters in the REST client, the client displays a response for the parameter values that you have entered.
The following example shows the response of the API call:
{ "processingTime": 1015, "orgLogoURL": "string", "primaryColor": "#039FB0", "backgroundColor": "#EAEAEA", "borderRadius": "11" }
The following table describes the parameters in the response body:
Parameter
Description
orgLogoURL
URL to the location that contains the logo of your organization.
primaryColor
Primary color of the Data Marketplace interface. This is the color used by the buttons, checkbox and other such user interface elements.
backgroundColor
Background color of a page.
borderRadius
Border radius of the buttons on the Data Marketplace interface.
Update customizations Use REST APIs to update the customizations applied to your Data Marketplace instance.
Endpoint and method The following table describes the connection properties for the API:
Property
Description
Endpoint
/api/v1/integration/admin/settings/customizations/lookandfeel
Method
PATCH
Note: You can call a maximum of 100 APIs per minute.
Request The following table describes the parameters that you enter in the body of the API payload:
Parameter
Description
Additional Information
orgLogoURL
Optional. Enter the URL to the location that contains the logo of your organization.
-
primaryColor
Optional. Specify a primary color for the Data Marketplace interface. This is the color used by the buttons, checkbox and other such user interface elements.
Enter a hexadecimal value that represents the color that you want to use.
backgroundColor
Optional. Specify a background color for a page.
Enter a hexadecimal value that represents the color that you want to use.
borderRadius
Optional. Specify a border radius for the buttons on the Data Marketplace interface.
Enter a value between 0 and 20.
Example request The following example shows how you can use an API to update the customizations applied to your Data Marketplace instance:
{ "orgLogoURL": "https://www.informatica.com/", "primaryColor": "#039FB0", "backgroundColor": "#EAEAEA", "borderRadius": 11 }
Response When you pass the API payload in the REST client, the client displays a response for the parameter values that you have entered.
The following example shows the response of the API call:
{ "processingTime": 1015, "orgLogoURL": "string", "primaryColor": "#039FB0", "backgroundColor": "#EAEAEA", "borderRadius": "11" }
The following table describes the parameters in the response body:
Parameter
Description
orgLogoURL
URL to the location that contains the logo of your organization.
primaryColor
Primary color of the Data Marketplace interface. This is the color used by the buttons, checkbox and other such user interface elements.
backgroundColor
Background color of a page.
borderRadius
Border radius of the buttons on the Data Marketplace interface.
Reset customizations Use REST APIs to reset the customizations applied to your Data Marketplace instance.
Endpoint and method The following table describes the connection properties for the API:
Property
Description
Endpoint
/api/v1/integration/admin/settings/customizations/lookandfeel
Method
DELETE
Note: You can call a maximum of 100 APIs per minute.
Request The API has no payload.
Example request The following example shows how you can use an API to reset the customizations applied to your Data Marketplace instance:
https://{{CDMP_URL}}/api/v1/integration/admin/settings/customizations/lookandfeel
Response When you pass the API query parameters in the REST client, the client displays a response for the parameter values that you have entered.
If you see the following response code, it means that the customizations applied to your Data Marketplace instance are reset successfully
204 OK code