API ReferenceManagementConnector Management
GET
/v1/mgmt/connector

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Get a single connector by id, using a valid management key.

curl -X GET "https://api.descope.com/v1/mgmt/connector"
{  "id": "string",  "name": "string",  "type": "string",  "status": "string",  "description": "string",  "configuration": {}}
export interface Response {id?: stringname?: stringtype?: stringstatus?: stringdescription?: stringconfiguration?: {}}
Was this helpful?