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.
Method | syntax |
---|---|
PUT | {{base_url}}/api/preview/awf/certifications/{certification_id}/results |
Parameters
Name | Type | In | Description |
---|---|---|---|
| string | path |
|
| object | body | Mutable fields to update |
value
must include the result_id
and any mutable fields to update:
Name | Type | Req. | Description |
---|---|---|---|
| int | Y | certification result number to update |
| enum | N | The decision to apply to the result |
| string | N | Send an empty string " " to clear the current note |
| string | N | Can be: |
| Reviewersarray | N | Contains |
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:
Name | Type | Req. | Description |
---|---|---|---|
| string | Y | Must be the same |
| string | Y | The |
| string | Y | Must match the |
| string | Y | Must match the |
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