---
title: "List all certificate outlines"
method: GET
path: "/api/v2/certificate-outlines"
tags: ["Certificate Outlines"]
---

# List all certificate outlines

`GET /api/v2/certificate-outlines`

> 🔑
>
> Required OAuth scope: `certificateOutlines:read`.

Lists all certificate outlines in your platform.

## Query parameters

- `createdAt` object
  - `lt` string, date-time — Filter on dates lower than the given one
  - `gte` string, date-time — Filter on dates greater than or equal the given one
- `groupId` object
  - `eq` string, ObjectId — Filter on values equal to the given one
  - `ne` string, ObjectId — Filter on values not equal to the given one
  - `in` string[] — Filter on values including the given ones
  - `nin` string[] — Filter on values excluding the given ones

## Headers

- `360-api-version` 'v2.0', required

## Response `200`

Returns all certificate outlines in the company.

- CertificateOutlineResponseDTO[]
  - `title` string, required — The title of the certificate outline.
  - `groupId` string, ObjectId, required — The unique ID of the group this outline belongs to.
  - `_id` string, ObjectId, required — The unique ID of the certificate outline.
  - `createdAt` string, date-time, required — The date and time when the certificate outline was created, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).

## Other responses

- `401` — The given access token is either missing, invalid, has expired, or has been revoked.
- `403` — The given access token does not have the required OAuth scope to execute the request.
- `429` — The client has sent too many requests in a short amount of time.

---

[API](https://skmtc.net/360learning/apis/core-api.md) · [All operations](https://skmtc.net/360learning/apis/core-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/360learning/core-api/versions/94b691b0b72c/schema)
