Update the Base URL for a Connector

patch

/process/api/v1/design/applications/{applicationName}/versions/{version}/connectors/{connectorId}

Updates the base URL of a connector for a given application name, version, and connector Id.

Request

Path Parameters
Supported Media Types
Request Body - multipart/form-data ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Configuration
Type: object
Request body for connector base url update
Show Source
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : Connector
Type: object
Show Source
Nested Schema : Configuration
Type: object
Request body for connector base url update
Show Source
Nested Schema : Description
Type: object
Show Source
Nested Schema : Identifier
Type: object
Show Source
Nested Schema : Lock
Type: object
Show Source

401 Response

Unauthorized

403 Response

Forbidden error

404 Response

Not found

409 Response

Connector is already locked by another user.

500 Response

An internal error occurred.
Back to Top

Examples

Example: Get the available global credentials for a connector

curl --location --request GET 'http://10.1.1.4/process/api/v1/design/applications/AWT/versions/1.0/connectors/12345/credentials/global' 
--header 'Content-Type: application/json' 
--header 'Authorization: Basic clMQ==' 
--data-raw

Example: Get the associated global credentials with a connector

curl --location --request GET 'http://10.1.1.4/process/api/v1/design/applications/BXT>/versions/2.0/connectors/12345/credentials/global' 
--header 'Content-Type: application/json' 
--header 'Authorization: Basic clMQ==' 
--data-raw

Example: Update credentials for a connector

url --location --request PATCH 'http://10.1.1.4/process/api/v1/design/applications/AZL/versions/3.0/connectors/324223/credentials/global/associate' 
--header 'Content-Type: application/json' 
--header 'Authorization: Basic clMQ==' 
--data-raw '{
   "mapName": "MAP1.0",
   "keyName": "KeyName",
   "type": "CUSTOM_KEY"
}'
Back to Top