Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 1.71 KB

SystemApi.md

File metadata and controls

75 lines (46 loc) · 1.71 KB

\SystemApi

All URIs are relative to https://sailpoint.api.identitynow.com

Method HTTP request Description
RefreshIdentities Post /cc/api/system/refreshIdentities Refresh Identities

RefreshIdentities

RefreshIdentities(ctx).ContentType(contentType).Body(body).Execute()

Refresh Identities

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {
    contentType := "application/json" // string |  (optional)
    body := "body_example" // string |  (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.SystemApi.RefreshIdentities(context.Background()).ContentType(contentType).Body(body).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `SystemApi.RefreshIdentities``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiRefreshIdentitiesRequest struct via the builder pattern

Name Type Description Notes
contentType string
body string

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]