Body
-
Instance title on the sign in / sign up page
-
Markdown text shown on the sign in / sign up page
-
Name of the Progressive Web App
-
Optional, short name for Progressive Web App
-
An explanation of what the Progressive Web App does
-
Instance image used on the sign in / sign up page
-
Icon used for Progressive Web App
-
Instance image used for the main navigation bar
-
Instance favicon in .ico/.png format
-
Markdown text shown on the new project page
-
Markdown text shown on the profile page below Public Avatar
-
Message within the system header bar
-
Background color for the system header / footer bar
-
Font color for the system header / footer bar
PUT
/application/appearance
curl \
--request PUT 'https://www.gitlab.com/api/v4/application/appearance' \
--header "Private-Token: $API_KEY" \
--header "Content-Type: multipart/form-data" \
--form "title=string" \
--form "description=string" \
--form "pwa_name=string" \
--form "pwa_short_name=string" \
--form "pwa_description=string" \
--form "logo=@file" \
--form "pwa_icon=@file" \
--form "header_logo=@file" \
--form "favicon=@file" \
--form "new_project_guidelines=string" \
--form "profile_image_guidelines=string" \
--form "header_message=string" \
--form "footer_message=string" \
--form "message_background_color=string" \
--form "message_font_color=string" \
--form "email_header_and_footer_enabled=true"
Response examples (200)
{
"title": "string",
"description": "string",
"pwa_name": "string",
"pwa_short_name": "string",
"pwa_description": "string",
"logo": "string",
"pwa_icon": "string",
"header_logo": "string",
"favicon": "string",
"new_project_guidelines": "string",
"profile_image_guidelines": "string",
"header_message": "string",
"footer_message": "string",
"message_background_color": "string",
"message_font_color": "string",
"email_header_and_footer_enabled": "string"
}