API Reference > Part III: Authenticate using Application Integration > Data Marketplace customizations > Update customizations
  

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
For more information about how you can call an API, see Authenticate using Application Integration.

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.