Skip to main content

List Vendor Connector Mappings

GET 

https://sailpoint.api.identitynow.com/v2024/vendor-connector-mappings

Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.

Responses

Successfully retrieved list.

Schema
  • Array [
  • idstring

    The unique identifier for the vendor-connector mapping.

    Example: 78733556-9ea3-4f59-bf69-e5cd92b011b4
    vendorstring

    The name of the vendor.

    Example: Example vendor
    connectorstring

    The name of the connector.

    Example: Example connector
    createdAtdate-time

    The creation timestamp of the mapping.

    Example: 2024-03-13T12:56:19.391294Z
    createdBystring

    The identifier of the user who created the mapping.

    Example: admin
    updatedAt objectnullable

    An object representing the nullable timestamp of the last update.

    Timedate-time

    The timestamp when the mapping was last updated, represented in ISO 8601 format.

    Example: 2024-03-14T12:56:19.391294Z
    Validboolean

    A flag indicating if the 'Time' field is set and valid.

    Default value: false
    Example: true
    updatedBy objectnullable

    An object representing the nullable identifier of the user who last updated the mapping.

    Stringstring

    The identifier of the user who last updated the mapping, if available.

    Example: user-67891
    Validboolean

    A flag indicating if the 'String' field is set and valid.

    Default value: false
    Example: true
    deletedAt objectnullable

    An object representing the nullable timestamp of when the mapping was deleted.

    Timedate-time

    The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.

    Example: 0001-01-01T00:00:00Z
    Validboolean

    A flag indicating if the 'Time' field is set and valid, i.e., if the mapping has been deleted.

    Default value: false
    Example: false
    deletedBy objectnullable

    An object representing the nullable identifier of the user who deleted the mapping.

    Stringstring

    The identifier of the user who deleted the mapping, if applicable.

    Example:
    Validboolean

    A flag indicating if the 'String' field is set and valid, i.e., if the mapping has been deleted.

    Default value: false
    Example: false
  • ]

Authorization: oauth2

type: Personal Access Token
scopes: idn:application-discovery:read
package main

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

func main() {

url := "https://sailpoint.api.identitynow.com/v2024/vendor-connector-mappings"
method := "GET"

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

if err != nil {
fmt.Println(err)
return
}
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
ResponseClear

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