How to get Custom Verification Provider id via GraphQL API?

This can be useful in scenarios where you need to fetch the value for analysisServerConfigId which is the id for the configured APM server connector via API.

query{
  connectors(filters: [
    {
      connectorType: {
        operator: EQUALS,
        values: [APM_VERIFICATION]
      }
    }
  ],
  limit: 10){
    nodes{
      id
      name
      }
    }
  }

Note: connectorType value can be changed as required for different types of available connectors.

2 Likes