---
title: "Get all jobs created by user"
method: POST
path: "/v1/auto-sigma/get_jobs"
tags: ["Auto Sigma"]
---

# Get all jobs created by user

`POST /v1/auto-sigma/get_jobs`

List all Auto Sigma jobs with status and pagination support.

## Request body

- GetSigmaJobsRequest — Request to list Auto Sigma jobs with optional filtering.
  - `limit` number — Max number of jobs to return 10, cannot exceed 1000
  - `offset` number — Number of jobs to skip before returning results

## Response `200`

Successful Response

- GetSigmaJobsResponse — Paginated list of Auto Sigma jobs.
  - `jobs` SigmaJobBase[] — A list of Sigma jobs.
    - `jobId` string, required — A unique identifier for the Sigma job.
    - `name` string, required — The name of the Sigma job.
    - `created` string, date-time, required — The timestamp when the Sigma job was created.
    - `modified` string, date-time, required — The timestamp when the Sigma job was last updated.
    - `status` string, required — The current status of the Sigma job (e.g., "CREATED", "RUNNING", "FINISHED", "FAILED").
    - `query` string, required — The query that was used to find the initial hashes.
    - `startDate` string, date, required — Earliest date to include in the query (cannot be before 2023-11-01)
    - `endDate` string, date, required — Latest date to include in the query, defaults to today in UTC
    - `nMatchedHashes` number, required — Number of hashes matching the query during specified time range
    - `familyCounts` FamilyCounts, required — Statistics over number of matched hashes per malware family

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Page not found

---

[API](https://skmtc.net/recordedfuture/apis/alert-api.md) · [All operations](https://skmtc.net/recordedfuture/apis/alert-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/recordedfuture/alert-api/revisions/c8c2f68d8b60/schema)
