Updating a theme
Update your Verify theme to change the look and feel of pages displayed in your applications on your tenant.
Before you begin
- Get an access token. See Managing themes.
- Download a theme with API.
About this task
Verify pages can be changed and customized for your company by updating the files in a theme.
Procedure
Example
The following example updates the default theme for your Verify tenant, which applies to all applications.
curl -X PUT 'https://companyAppTest.verify.ibm.com/v1.0/branding/themes/default' --header 'Content-Type: multipart/form-data' --header 'Accept: application/json' -F 'configuration=@config.json' -F 'files=@my_themes.zip' -H 'Authorization: Bearer JUHn05z35P4Kd9QaCLHFEyMGEbzeCOo0faBefI9w'
The next example updates a user-created theme on the tenant.
curl -X PUT 'https://companyAppTest.verify.ibm.com/v1.0/branding/themes/38d7387a-3b03-455d-b358-55ed497065e7' --header 'Content-Type: multipart/form-data' --header 'Accept: application/json' -F 'configuration=@config.json' -F 'files=@my_themes.zip' -H 'Authorization: Bearer JUHn05z35P4Kd9QaCLHFEyMGEbzeCOo0faBefI9w'