ApiManagementProjects
POST
/v1/mgmt/projects/list

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Request Body

application/json

List all projects utilizing a management key.

This endpoint allows you to list all projects in your account.

See Also

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