Home / Resources / API Reference

Project

Base route: /api/project

Get project script modules

Retrieves a list of script modules associated with the project, indicating which ones are currently imported into the project scope.

Request

Parameters
projectId
string
required
The unique identifier of the project.
Query string

GET /api/project/script-modules? projectId=...

Response

Parameters
scriptModules
array
A collection of script module metadata objects.
Response body

{   "projectId": "string",   "scriptModules": [     {       "scriptModuleId": "string",       "name": "string",       "imported": true     }   ] }