Skip to main content

Get Password Change Request Status

GET 

https://sailpoint.api.identitynow.com/v3/password-change-status/:id

This API returns the status of a password change request.

Request

Path Parameters

    id stringrequired

    Password change request ID

    Example: 089899f13a8f4da7824996191587bab9

Responses

Status of the password change request

Schema
    requestIdstringnullable

    The password change request ID

    Example: 089899f13a8f4da7824996191587bab9
    statestring

    Password change state

    Possible values: [IN_PROGRESS, FINISHED, FAILED]

    Example: IN_PROGRESS
    errorsstring[]

    The errors during the password change request

    Example: ["The password change payload is invalid"]
    sourceIdsstring[]

    List of source IDs in the password change request

    Example: ["2c918083746f642c01746f990884012a"]

Authorization: oauth2

type: Personal Access Token
user levels: ORG_ADMIN

package main

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

func main() {

url := "https://sailpoint.api.identitynow.com/v3/password-change-status/:id"
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/v3
Auth
Parameters
— pathrequired
ResponseClear

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