Skip to main content

Identity Summaries for Campaign Certification

GET 

https://sailpoint.api.identitynow.com/v2025/certifications/:id/identity-summaries

This API returns a list of the identity summaries for a specific identity campaign certification. Reviewers for this certification can also call this API.

Request

Path Parameters

    id stringrequired

    The identity campaign certification ID

    Example: ef38f94347e94562b5bb8424a56397d8

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
    filters string

    Filter results using the standard syntax described in V3 API Standard Collection Parameters

    Filtering is supported for the following fields and operators:

    id: eq, in

    completed: eq, ne

    name: eq, sw

    Example: id eq "ef38f94347e94562b5bb8424a56397d8"
    sorters comma-separated

    Sort results using the standard syntax described in V3 API Standard Collection Parameters

    Sorting is supported for the following fields: name

    Example: name

Responses

List of identity summaries

Schema
  • Array [
  • idstring

    The ID of the identity summary

    Example: 2c91808772a504f50172a9540e501ba7
    namestring

    Name of the linked identity

    Example: Alison Ferguso
    identityIdstring

    The ID of the identity being certified

    Example: 2c9180857182306001719937377a33de
    completedboolean

    Indicates whether the review items for the linked identity's certification have been completed

    Example: true
  • ]

Authorization: oauth2

type: Personal Access Token
user levels: ORG_ADMIN, CERT_ADMIN
package main

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

func main() {

url := "https://sailpoint.api.identitynow.com/v2025/certifications/:id/identity-summaries"
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/v2025
Auth
Parameters
— pathrequired
— query
— query
— query
— query
— query
ResponseClear

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