API ReferenceManagementProject Management
POST
/v1/mgmt/project

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

name?string
environment?string
tags?array<string>
string

Create a new project in the management key's company, using a valid company-level management key.

curl -X POST "https://api.descope.com/v1/mgmt/project" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": "string",  "name": "string",  "tag": "string",  "environment": "string",  "tags": [    "string"  ]}
export interface Response {id?: stringname?: stringtag?: stringenvironment?: stringtags?: string[]}
Was this helpful?