POST
/v1/mgmt/project/clone/async

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, including its settings and configurations. Users, tenants and access keys are not cloned. This API is asynchronous and will return a unique ID that can be used to track the progress of the clone operation.

curl -X POST "https://api.descope.com/v1/mgmt/project/clone/async" \  -H "Content-Type: application/json" \  -d '{}'
{  "processId": "string"}
export interface Response {processId?: string}
Was this helpful?