Update Certification Result
Add decisions and notes to a certification result
Apply a decision, note, sign-off, or reviewer change to a numbered certification result.
Each row of the certification results can be annotated, marked as ACCEPTED, or REJECTED, signed-off, or assigned to a different reviewer.
PUT
{{base_url}}/api/preview/awf/certifications/{certification_id}/results
Parameters
cert_id
string
path
id
of the certification to update
value
object
body
Mutable fields to update
value
must include the result_id
and any mutable fields to update:
result_id
int
Y
certification result number to update
decision
enum
N
The decision to apply to the result
notes
string
N
Send an empty string " " to clear the current note
signed_off_state
string
N
Can be: NOT_SIGNED_OFF
, SIGNED_OFF
Valid decisions are:
NONE
// No decision has been madeACCEPTED
// The access described in the result row is acceptableREJECTED
// The access described in the result row isn't correctFIXED
// The access was rejected but has been fixed
Adding a note overwrites the previous value. Historical notes are included in the action log when Listing Certification Results. When viewing the row in the UI, only the most recent note is shown.
Re-assigning reviewers
reviewers
A result’s reviewer can be reassigned by updating the reviewers
field with a list of one or more Access Workflow User objects:
user_type
string
Y
Must be the same user_type
as configured for the primary workflows Identity Provider. Typical values are OktaUser
, CustomIDPUser
, or AzureADUser
.
id
string
Y
The user_identity_property
set when configuring the workflows IdP is used to validate a Workflow Reviewer's identity
. For an Okta user, this would be an id
such as 00upa6s0hSGtl1eGL5d5
. For a Custom IdP user, this will typically be the IdP users identity
set within the OAA payload.
email
string
Y
Must match the email
property on the local user or graph node.
name
string
Y
Must match the name
property on the local user or graph node.
Note that all fields are required when assigning a reviewer. As of the current release, there is no customer-facing API to get local user id
s. For this reason, API-based reviewer reassignment is recommended only when a graph IdP is configured as the Global Workflows IdP, and you can programmatically retrieve required identifiers such as user "name," "id," and "email."
Examples
Reject with note
Change the reviewer to a Custom IdP user
Assign a local user as a reviewer
Response
A successful response will be empty: {}
.
Last updated