API ReferenceManagementLists
GET
/v1/mgmt/list/all

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Get all lists

curl -X GET "https://api.descope.com/v1/mgmt/list/all"
{  "lists": [    {      "id": "string",      "name": "string",      "description": "string",      "type": "string",      "data": null    }  ]}
export interface Response {lists?: {id?: stringname?: stringdescription?: stringtype?: string/** * Represents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a list of values. */data?: {[k: string]: unknown}}[]}
Was this helpful?