Skip to main content

Update Connector Correlation Configuration

PUT 

https://sailpoint.api.identitynow.com/v2024/connectors/:scriptName/correlation-config

Update a connector's correlation config using its script name.

Request

Path Parameters

    scriptName stringrequired

    The scriptName value of the connector. Scriptname is the unique id generated at connector creation.

Bodyrequired

    filebinaryrequired

    connector correlation config xml file

Responses

The connector's update detail

Schema
    messagestring

    The detailed message for an update. Typically the relevent error message when status is error.

    Example: unsupported xsd version, please ensure latest xsd version http://www.sailpoint.com/xsd/sailpoint_form_2_0.xsd is used for source config
    scriptNamestring

    The connector script name

    Example: servicenow
    updatedFilesstring[]nullable

    The list of updated files supported by the connector

    Example: ["pod/org/connectorFiles/testconnector/test1.jar"]
    statusstring

    The connector update status

    Possible values: [ERROR, UPDATED, UNCHANGED, SKIPPED]

    Example: ERROR

Authorization: oauth2

type: Personal Access Token
scopes: idn:connector-config:manage
user levels: ORG_ADMIN, SOURCE_ADMIN, SOURCE_SUBADMIN
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://sailpoint.api.identitynow.com/v2024/connectors/:scriptName/correlation-config"
method := "PUT"

client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)

if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "multipart/form-data")
req.Header.Add("Accept", "application/json")
req.Header.Add("Authorization", "Bearer <TOKEN>")

res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()

body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
Request Collapse all
Base URL
https://sailpoint.api.identitynow.com/v2024
Auth
Parameters
— pathrequired
Body required
required
connector correlation config xml file
ResponseClear

Click the Send API Request button above and see the response here!