Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Version 2 APIs use Basic Authentication. It supports username/password or token-based authentication.

...

GraphQL API Details

The GraphQL schema is server from served on the FlexDeploy server. One easy way to call it is to use Postman.POST It can easily be retrieved using Postman, GraphiQL, or similar tools.

  • Start a POST request to http(s)://{{FLEXDEPLOY_SERVER_HOSTNAME}}:{{FLEXDEPLOY_SERVER_PORT}}/flexdeploy/rest/v2/graphql

  • Fill in the Authorization information

...

  • . Basic authentication is supported with username/password or a token.

  • Some tools will automatically fetch the schema and help autocomplete your requests

...

  • when you start filling in the request body. Otherwise, you can run an introspection query to get schema details.

Version 1 API Details

Version 1 APIs use Basic Authentication, but not tokens.

...