---
title: "Create an activity"
method: POST
path: "/v2/activities"
tags: ["Activities"]
---

# Create an activity

`POST /v2/activities`

Creates a new custom activity in your workspace.

This endpoint is in alpha and may be subject to breaking changes as we gather feedback.

Required scopes: `activity_configuration:read-write`.

## Request body

- object
  - `data` object, required
    - `api_slug` string, required — A unique, human-readable slug to access the activity through URLs and API calls. Should be formatted in snake case.
    - `singular_noun` string, required — The singular form of the activity's name.
    - `plural_noun` string, required — The plural form of the activity's name.
    - `extends` 'activities' | 'interactions' | 'calls', required — The schema the new activity extends, which supplies its inherited attributes. One of `activities`, `interactions` or `calls`.

## Response `200`

Success

- object — Success
  - `data` Activity, required
    - `id` object, required
      - `workspace_id` string, uuid, required — A UUID to identify the workspace this activity belongs to.
      - `activity_id` string, uuid, required — A UUID to identify the activity.
    - `api_slug` string, required — A unique, human-readable slug to access the activity through URLs and API calls. Formatted in snake case.
    - `singular_noun` string, required — The singular form of the activity's name.
    - `plural_noun` string, required — The plural form of the activity's name.
    - `extends` object[], required — The schemas this activity directly extends, which supply its inherited attributes.
      - `schema_id` string, uuid, required — A UUID to identify the schema.
      - `schema_slug` string, required — The human-readable slug of the schema.
    - `is_system_activity` boolean, required — `true` when Attio defines the activity, `false` when it's a custom activity.
    - `created_at` string, required — When the activity was created.

## Other responses

- `409` — Conflict

---

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