POST
/v2/mgmt/theme/export

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Export a theme from a project utilizing a management key.

This endpoint is used to export a theme from a project. The response is the JSON of the theme.

See Also

curl -X POST "https://api.descope.com/v2/mgmt/theme/export"
{  "theme": {    "styles": {},    "componentsVersion": "string",    "references": {      "connectors": {        "property1": "string",        "property2": "string"      },      "oauth": [        "string"      ],      "omitted": [        "string"      ],      "roles": {        "property1": "string",        "property2": "string"      },      "userAttributes": [        "string"      ],      "tenantAttributes": [        "string"      ]    }  }}
export interface Response {/** * Used by managementservice snapshots - make sure not to break compatibility */theme?: {styles?: {}componentsVersion?: stringreferences?: ProjectReferences}}/** * Used by managementservice snapshots - make sure not to break compatibility */export interface ProjectReferences {connectors?: {[k: string]: string}oauth?: string[]omitted?: string[]roles?: {[k: string]: string}userAttributes?: string[]tenantAttributes?: string[]}
Was this helpful?