Skip to content

Latest commit

 

History

History
77 lines (47 loc) · 1.84 KB

SourcesAccountsApi.md

File metadata and controls

77 lines (47 loc) · 1.84 KB

\SourcesAccountsApi

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

Method HTTP request Description
ExportAccountFeed Get /cc/api/source/exportAccountFeed/{id} Export Account Feed

ExportAccountFeed

ExportAccountFeed(ctx, id).Execute()

Export Account Feed

Example

package main

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

func main() {
    id := "id_example" // string | 

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

Path Parameters

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

Other Parameters

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

Name Type Description Notes

Return type

(empty response body)

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]