# Jobs

## List Jobs

<mark style="color:green;">`GET`</mark> /v1/organizations/jobs

\<Description of the endpoint>

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**QueryString**

| Name              | Type   | Description                          |
| ----------------- | ------ | ------------------------------------ |
| action=list\_jobs | string | The action (will not be needed soon) |
| org\_id           | string | The Organization ID                  |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "status": 200,
  "jobs": [
    {
      "plan_name": "string",
      "job_id": "string", 
      "run_date": "string",
      "job_status": number,
      "time_consumed": "string",
      "resources_started": "string",
      "resources_stopped": "string"
    }
  ]
}
```

{% endtab %}
{% endtabs %}
