Waiting for engine...
Skip to main content

authSourceBrokerBasicMigrate

Migrates existing Broker based Basic authentication source to Gateway Basic authentication source.

Input Parameters:

  • id: ID of the Broker basic authentication source to migrate.

Response:

  • Returns the migrated Gateway basic authentication source with users, groups, and roles.

Example Request:

mutation {
authSourceBrokerBasicMigrate(id: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>") {
id,
name,
description,
roles {
id,
name,
description
},
users {
id,
name,
enabled
},
groups {
id,
name,
description
}
}
}

authSourceBrokerBasicMigrate(
id: ID!
): AuthSourceBasic!

Arguments

authSourceBrokerBasicMigrate.id ● ID! non-null scalar miscellaneous

Type

AuthSourceBasic object platform

A Gateway-based Basic authentication source that can be used to secure APIs or Developer Portals.

On this Page