Skip to main content

Get Password Sync Group List

GET 

https://sailpoint.api.identitynow.com/beta/password-sync-groups

This API returns a list of password sync groups.

Request

Query Parameters

    limit int32

    Possible values: <= 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Default value: 250
    Example: 250
    offset int32

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Default value: 0
    Example: 0
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Default value: false
    Example: true

Responses

A list of password sync groups.

Schema
  • Array [
  • idstring

    ID of the sync group

    Example: 6881f631-3bd5-4213-9c75-8e05cc3e35dd
    namestring

    Name of the sync group

    Example: Password Sync Group 1
    passwordPolicyIdstring

    ID of the password policy

    Example: 2c91808d744ba0ce01746f93b6204501
    sourceIdsstring[]

    List of password managed sources IDs

    Example: ["2c918084660f45d6016617daa9210584","2c918084660f45d6016617daa9210500"]
    createddate-timenullable

    The date and time this sync group was created

    Example: 2023-03-16T04:00:00Z
    modifieddate-timenullable

    The date and time this sync group was last modified

    Example: 2023-03-16T04:00:00Z
  • ]

Authorization: oauth2

type: Personal Access Token
scopes: idn:password-sync-group-management:read
user levels: ORG_ADMIN
package main

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

func main() {

url := "https://sailpoint.api.identitynow.com/beta/password-sync-groups"
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/beta
Auth
Parameters
— query
— query
— query
ResponseClear

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