Skip to main content

Complete a Campaign

POST 

https://sailpoint.api.identitynow.com/beta/campaigns/:id/complete

deprecated

This endpoint has been deprecated and may be replaced or removed in future versions of the API.

caution

This endpoint will run successfully for any campaigns that are past due.

This endpoint will return a content error if the campaign is not past due.

Use this API to complete a certification campaign. This functionality is provided to admins so that they can complete a certification even if all items have not been completed. Though this Beta endpoint has been deprecated, you can find its V3 equivalent here.

A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API.

Request

Path Parameters

    id stringrequired

    Campaign ID.

    Example: ef38f94347e94562b5bb8424a56397d8

Body

Optional. Default behavior is for the campaign to auto-approve upon completion, unless autoCompleteAction=REVOKE

    autoCompleteActionstring

    Determines whether to auto-approve(APPROVE) or auto-revoke(REVOKE) upon campaign completion.

    Possible values: [APPROVE, REVOKE]

    Default value: APPROVE
    Example: REVOKE

Responses

Accepted - Returned if the request was successfully accepted into the system.

Schema
    objectobject

Authorization: oauth2

type: Personal Access Token
scopes: idn:campaign:manage
package main

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

func main() {

url := "https://sailpoint.api.identitynow.com/beta/campaigns/:id/complete"
method := "POST"

payload := strings.NewReader(`{
"autoCompleteAction": "REVOKE"
}`)

client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)

if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
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/beta
Auth
Parameters
— pathrequired
Body
{
  "autoCompleteAction": "REVOKE"
}
ResponseClear

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