---
title: "Create a New Accomplishment"
method: POST
path: "/api/v2/accomplishments"
tags: ["Accomplishment"]
---

# Create a New Accomplishment

`POST /api/v2/accomplishments`

This endpoint creates a new accomplishment in the system. <h3>Required Scope</h3>`accomplishments:write`

## Request body

- V2AccomplishmentsBody
  - `data` Apiv2accomplishmentsData
    - `attributes` Apiv2accomplishmentsDataAttributes
      - `user-identifier-type` string, nullable, required — Must be `UserId`.
      - `user-id` string, nullable, required — The unique ID of the user who completed it.
      - `title` string, nullable, required — Text describing the accomplishment.The max length is 255 characters.
      - `started-at` string, date-time, nullable — Date when the accomplishment was started.
      - `completed-at` string, date-time, nullable, required — Date when the accomplishment was completed.
      - `image-url` string, nullable — Url of an image which will be shown on the content cards at Degreed.
      - `rating` integer, nullable — Rating of the accomplishment, an integer value from 1 up to and including 8.

## Response `201`

Success

- PostedAccomplishment
  - `data` PostedAccomplishmentData
    - `type` string
    - `id` string
    - `attributes` PostedAccomplishmentDataAttributes
      - `user-identifier-type` string, nullable
      - `user-id` string, nullable
      - `title` string, nullable
      - `started-at` string, date-time, nullable — UTC
      - `completed-at` string, date-time, nullable — UTC
      - `image-url` string, nullable
      - `rating` integer, nullable
  - `links` SelfLink
    - `self` string

---

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