Update a brand's profile
The id of the brand.
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URL
This is used to authenticate the request. If the request is not authenticated, the server will return a 401 Unauthorized response.
YOUR_AUTH_KEY
This class provides the Brand Profile Dto.
The slogan.
The logo URL.
The favicon URL.
The primary color. Color for primary actions, buttons, text links. 3 and 6 digit hex code values accepted.
The primary color hover. Color for primary actions, buttons, text links hover. 3 and 6 digit hex code values accepted.
This value is used to determine the secondary color of the brand. Color for background to accent your UI. 3 and 6 digit hex code values accepted.
This value is used to determine the tertiary color of the brand. Color for background to accent your UI. 3 and 6 digit hex code values accepted.
PUT /api/v1/brands/{id}/profile HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Auth-Key: text
Content-Type: application/json
Accept: */*
Content-Length: 180
{
"slogan": "text",
"logoURL": "https://example.com",
"faviconURL": "https://example.com",
"primaryColor": "text",
"primaryColorHover": "text",
"secondaryColor": "text",
"tertiaryColor": "text"
}
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": true,
"errors": []
}
Last updated
Was this helpful?