API to retry failed operation
POST/api/v1/mssp/:mssp-id/operation/:request-id/retry
x-public: "true"
MSSP user API to retry failed operation
Request
Path Parameters
mssp-id stringrequired
the id of the MSSP of interest
request-id uuidrequired
the request id being retried
- application/json; charset=UTF-8
Body
status stringrequired
Possible values: [SUCCESS
, FAILURE
]
errorMessage string
tenantUpdate object
prismaId int64
externalTenantId string
stackName string
stackBaseUrl string
Responses
- 200
- 400
- 404
- 429
OK
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
- 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[]
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
{
"requestId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"msspId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"operationType": "MESSAGE_FAN_OUT",
"operationName": "PROVISION_TENANT",
"operationDescription": "string",
"status": "IN_PROGRESS",
"tenantChanges": [
{
"tenantChangeId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"externalTenantId": "string",
"tenantPrismaId": "string",
"status": "IN_PROGRESS",
"updatedAt": 0
}
],
"startedBy": "string",
"startedAt": 0,
"updatedAt": 0,
"isRetryable": true,
"retryOf": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"retriedBy": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
Client error. One of the required arguments in the request body is not correctly supplied
- */*
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
The MSSP does not exist
- */*
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Rate limiting error
- */*
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Loading...