GET
/v1/mgmt/projectAuthorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Load the project's name, environment and tags, using a valid management key.
curl -X GET "https://api.descope.com/v1/mgmt/project"{ "id": "string", "name": "string", "tag": "string", "environment": "string", "tags": [ "string" ]}export interface Response {id?: stringname?: stringtag?: stringenvironment?: stringtags?: string[]} Was this helpful?