Create a New Project

POST /api/0/teams/{organization_slug}/{team_slug}/projects/

Create a new project bound to a team.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the team belongs to.

team_slug (string)
REQUIRED

The slug of the team to create a new project for.

Body Parameters

name (string)
REQUIRED

The name for the new project.

slug (string)

Optional slug for the new project. If not provided a slug is generated from the name.

Scopes

<auth_token> requires one of the following scopes:
  • project:write
curl https://sentry.io/api/0/teams/{organization_slug}/{team_slug}/projects/ \
 -H 'Authorization: Bearer <auth_token>' \
 -H 'Content-Type: application/json' \
 -d '{"name":"The Spoiled Yoghurt","slug":"the-spoiled-yoghurt"}'
RESPONSESCHEMA
{
  "status": "active",
  "name": "The Spoiled Yoghurt",
  "color": "#bf6e3f",
  "isInternal": false,
  "isPublic": false,
  "slug": "the-spoiled-yoghurt",
  "platform": null,
  "hasAccess": true,
  "firstEvent": null,
  "avatar": {
    "avatarUuid": null,
    "avatarType": "letter_avatar"
  },
  "isMember": false,
  "dateCreated": "2020-08-20T14:36:34.171255Z",
  "isBookmarked": false,
  "id": "5398494",
  "features": [
    "custom-inbound-filters",
    "discard-groups",
    "rate-limits",
    "data-forwarding",
    "similarity-view",
    "issue-alerts-targeting",
    "servicehooks",
    "minidump",
    "similarity-indexing"
  ]
}