Waiting for engine...
Skip to main content

devPortal

Returns the DevPortal that matches the specified ID.

Input Parameters:

  • id: The ID of the API Gateway.

Response: DevPortal object with complete configuration including theme, environments, and gateway information.

Example Request:

query {
devPortal(id: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>") {
id,
internalName,
theme {
text {
publishedName,
welcomeMessage
},
colors {
siteFrameworkColor,
contentBackgroundColor,
borderColor,
primaryTextColor,
linkColor,
selectedItemColor,
headingColor,
navigationBackgroundColor,
navigationLinkColor,
navigationSelectedItemColor,
navigationHeadingColor
},
logo {
type,
altText
},
backgroundImage {
type,
altText
}
},
environmentFilterEnabled,
gateway {
id,
name,
environments {
id,
name,
publishedName
}
}
}
}

devPortal(
id: ID!
): DevPortal

Arguments

devPortal.id ● ID! non-null scalar miscellaneous

Type

DevPortal object platform

Configuration for a developer portal including theme, branding, and environment settings.

On this Page