# Work

## Get

<mark style="color:blue;">`GET`</mark> `https://api.halosecurity.com/api/v1/work/get.json`

### **Parameters**

| Name | Type | Detail   |
| ---- | ---- | -------- |
| id   | UUID | Required |

### **Response**

{% tabs %}
{% tab title="In Progress" %}

```json
{
    "success":1,
    "work":{
        "id":"UUID",
        "complete":0,
        "state":"in-progress",
        "duration":5000,
        "date_created":"2024-09-23 01:00"   
    }
}
```

{% endtab %}

{% tab title="Complete" %}

```json
{
    "success":1,
    "work":{
        "id":"UUID",
        "complete":1,
        "state":"success",
        "duration":60000,
        "date_created":"2024-09-23 01:01"   
    }
}
```

{% endtab %}
{% endtabs %}
