POST
/v1/mgmt/project/clone

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

Clone a project utilizing a management key.

This endpoint allows you to clone the current project, including its settings and configurations.

Note: This requires a pro or enterprise tier licenses. Users, tenants and access keys are not cloned.

See Also

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