GET
/v1/mgmt/project/clone/async/{processId}

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Path Parameters

processId*string

Get the status of an asynchronous clone project process. This returns an object describing the new project details or an error if the process failed, using a valid management key.

curl -X GET "https://api.descope.com/v1/mgmt/project/clone/async/string"
{  "projectId": "string",  "projectName": "string",  "error": "string"}
export interface Response {projectId?: stringprojectName?: stringerror?: string}
Was this helpful?