Skip to content

Latest commit

 

History

History
79 lines (49 loc) · 2.31 KB

AccountAggregationsAPI.md

File metadata and controls

79 lines (49 loc) · 2.31 KB

\AccountAggregationsAPI

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

Method HTTP request Description
GetAccountAggregationStatus Get /account-aggregations/{id}/status In-progress Account Aggregation status

GetAccountAggregationStatus

AccountAggregationStatus GetAccountAggregationStatus(ctx, id).Execute()

In-progress Account Aggregation status

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/sailpoint-oss/golang-sdk/v2"
)

func main() {
    id := "2c91808477a6b0c60177a81146b8110b" // string | The account aggregation id

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.AccountAggregationsAPI.GetAccountAggregationStatus(context.Background(), id).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `AccountAggregationsAPI.GetAccountAggregationStatus``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `GetAccountAggregationStatus`: AccountAggregationStatus
    fmt.Fprintf(os.Stdout, "Response from `AccountAggregationsAPI.GetAccountAggregationStatus`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
id string The account aggregation id

Other Parameters

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

Name Type Description Notes

Return type

AccountAggregationStatus

Authorization

UserContextAuth, UserContextAuth

HTTP request headers

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

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