Custom Header Resource

The Custom Header API returns the customised header and footer details.

GET /v2/customheader

A GET request to the /customheader endpoint returns the customised header and footer details. The properties can be customised in /conf/custom-header.properties

Response Body
media type data type description
application/json CustomHeaderProperties (JSON) The CustomHeader object in JSON format.

Example

Request
GET /v2/customheader
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "headerMessage" : "...",
  "headerColor" : "...",
  "headerFontSize" : "...",
  "headerFontWeight" : "...",
  "footerMessage" : "...",
  "footerColor" : "...",
  "footerFontSize" : "...",
  "footerFontWeight" : "..."
}