API ReferenceManagementLists
GET
/v1/mgmt/list/name/{name}

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Path Parameters

name*string

Get a list by name

curl -X GET "https://api.descope.com/v1/mgmt/list/name/string"
{  "list": {    "id": "string",    "name": "string",    "description": "string",    "type": "string",    "data": null  }}
export interface Response {/** * Lists */list?: {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?