Skip to main content

Get the operation list for an MSSP

GET 

/api/v1/mssp/:mssp-id/operation

x-public: "true"

Gets the list of operations for an MSSP.

Request

Path Parameters

    mssp-id stringrequired

    the id of the MSSP of interest

Query Parameters

    status string[]

    Possible values: [IN_PROGRESS, SUCCESS, FAILURE]

    optional filter by status, accepts "success", "failure", "in_progress"

    show_retried boolean

    optional boolean filter to show retried operations, defaults to false

    nextPageToken string

    pagination token to continue a previous query

Responses

OK

Schema
    value object[]
  • Array [
  • requestId uuid
    msspId uuid
    operationType string

    Possible values: [MESSAGE_FAN_OUT, ORCHESTRATOR_REQUEST]

    operationName string

    Possible values: [PROVISION_TENANT, UPDATE_TENANT, DELETE_TENANT, OFFBOARD_TENANT, REPLICATE_ACTION, CREATE_USER, UPDATE_USER, DELETE_USER, POLICY_MAP, POLICY_UNMAP, SYNC_POLICIES]

    operationDescription string
    status string

    Possible values: [IN_PROGRESS, SUCCESS, FAILURE]

    tenantChanges object[]
  • Array [
  • tenantChangeId uuid
    externalTenantId string
    tenantPrismaId string
    status string

    Possible values: [IN_PROGRESS, SUCCESS, FAILURE]

    updatedAt int64
  • ]
  • startedBy string
    startedAt int64
    updatedAt int64
    isRetryable boolean
    retryOf uuid
    retriedBy uuid
  • ]
  • nextPageToken string
Loading...