GET
/v1/mgmt/widget/list

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

List all widgets in project

curl -X GET "https://api.descope.com/v1/mgmt/widget/list"
{  "widgets": [    {      "widgetId": "string",      "name": "string",      "type": "string",      "disabled": true    }  ]}
export interface Response {widgets?: Widget[]}export interface Widget {widgetId?: stringname?: stringtype?: stringdisabled?: boolean}
Was this helpful?