CureIt

The CureIt object contains data about the CureIt! utility. The key set of the object depends on the status of the utility.

Structure

Key

Type

Description

status

string

Status: successfully created, in the process of creation, or deleted.

retries

object

Attempts to create the utility again.

left

number

Number of remaining attempts to create the utility.

after

string

Date after which it is permitted to create the utility again.

Examples

Utility is created

{

 "status": "successful",

 "retries": null

}

Utility is in the process of creation

{

 "status": "processing",

 "retries": null

}

Utility is deleted

The number of remaining attempts to create the utility is non-zero

{

 "status": "deleted",

 "retries": {

   "left": 3

 }

}

The number of remaining attempts is zero

{

 "status": "failed",

 "retries": {

   "after": "2018-07-31T11:42:36.873274+00:00",

   "left": 0

 }

}