POST
/v1/mgmt/connector/updateAuthorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Request Body
application/json
id?string
name?string
type?string
status?string
description?string
configuration?object
Update a single connector, using a valid management key.
curl -X POST "https://api.descope.com/v1/mgmt/connector/update" \ -H "Content-Type: application/json" \ -d '{}'{ "id": "string", "name": "string", "type": "string", "status": "string", "description": "string", "configuration": {}}export interface Response {id?: stringname?: stringtype?: stringstatus?: stringdescription?: stringconfiguration?: {}} Was this helpful?