Skip to main content

Certification Task by ID

GET 

/certification-tasks/:id

This API returns the certification task for the specified ID. A token with ORG_ADMIN or CERT_ADMIN authority is required to call this API. Reviewers for the specified certification can also call this API.

Request

Path Parameters

    id stringrequired

    The task ID

    Example: 63b32151-26c0-42f4-9299-8898dc1c9daa

Responses

A certification task

Schema
    id string

    The ID of the certification task.

    type string

    Possible values: [REASSIGN, ADMIN_REASSIGN, COMPLETE_CERTIFICATION, FINISH_CERTIFICATION, COMPLETE_CAMPAIGN, ACTIVATE_CAMPAIGN, CAMPAIGN_CREATE, CAMPAIGN_DELETE]

    The type of the certification task. More values may be added in the future.

    targetType string

    Possible values: [CERTIFICATION, CAMPAIGN]

    The type of item that is being operated on by this task whose ID is stored in the targetId field.

    targetId string

    The ID of the item being operated on by this task.

    status string

    Possible values: [QUEUED, IN_PROGRESS, SUCCESS, ERROR]

    The status of the task.

    errors object[]

    A list of errors that have been encountered by the task.

  • Array [
  • locale stringnullable

    The locale for the message text, a BCP 47 language tag.

    localeOrigin LocaleOriginnullable

    Possible values: [DEFAULT, REQUEST, null]

    An indicator of how the locale was selected. DEFAULT means the locale is the system default. REQUEST means the locale was selected from the request context (i.e., best match based on the Accept-Language header). Additional values may be added in the future without notice.

    text string

    Actual text of the error message in the indicated locale.

  • ]
  • reassignmentTrailDTOs object[]

    Reassignment trails that lead to self certification identity

  • Array [
  • previousOwner string

    The ID of previous owner identity.

    newOwner string

    The ID of new owner identity.

    reassignmentType string

    The type of reassignment.

  • ]
  • created date-time

    The date and time on which this task was created.

Loading...