Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

Get Connector

view on GitHub

Get Connector is available as both a pgutil command and an HTTP Request, and will return a list of properties for the specified connector.

Command Specification (CLI)

The connectors properties list command is used return the properties of a single connector.

The --connector option is always required.

Getting a connector requires the connector name (e.g. MyNugetConnector):

pgutil connectors properties list --connector=myNugetConnector

This will return the properties of the specified connector:

url=https://api.nuget.org/v3/index.json
feedType=nuget
timeout=10
metadataCacheEnabled=false
metadataCacheCount=*not set*
metadataCacheMinutes=*not set*

HTTP Request Specification

To return a specified connector, simply GET to the following URL with the name of the connector and an appropriate API Key.

GET /api/management/connectors/get/«connector-name»

HTTP Response Specification

A Connector (see ProGetConnector.cs) object will be returned on a successful 200 response. A 403 response indicates a missing, unknown, or unauthorized API Key.