Skip to main content

Get risk score data in bulk

GET 

/risk_scores

This endpoint can retrieve risk score data in bulk from Lifecycle

Request

Query Parameters

    query object

    Allows for pagination and sorting.

    object_id uuid

    ID of an object for filtering. Used along with object_type

    object_type string

    Possible values: [Profile, WorkflowSession]

    Type of object that object_id represents

    overall_risk_level_id uuid

    Overall risk level to filter by

    impact_risk_level_id uuid

    Impact risk level to filter by

    probability_risk_level_id uuid

    Probability risk level to filter by

    metadata boolean

    Returns batching metadata in the response

Responses

Expected response to a valid request

Schema
    risk_scores object[]
  • Array [
  • id uuid
    uid string

    Possible values: >= 32 characters and <= 32 characters

    object_id uuid
    object_type string

    Possible values: [Profile, WorkflowSession]

    overall_score number
    overall_risk_level_id uuid
    impact_score number
    impact_risk_level_id uuid
    probability_score number
    probability_risk_level_id uuid
  • ]
  • _metadata object
    limit integer
    offset integer
    total integer
    next string
    previous string
Loading...