project-management
List All Project
Endpoint
GET /xls-server/project/list
Description
Retrieves all projects.
Request Example
curl -k -X GET https://<server>:8443/xls-server/project/list \
-H "Authorization: Bearer <token>"
Get Project
Endpoint
GET /xls-server/project/{id}
Description
Retrieves detailed information about a specific project.
Path Parameters
Parameter | Type | Description |
---|---|---|
id | string | Unique project identifier |
Request Example
curl -k -X GET https://<server>:8443/xls-server/project/PROJECT-1 \
-H "Authorization: Bearer <token>"
Delete Project
Endpoint
DELETE /xls-server/project/delete
Description
Deletes a specific project from XLServer.
Query Parameters
Parameter | Type | Description |
---|---|---|
input | string | Unique project identifier |
Request Example
curl -k -X DELETE https://<server>:8443/xls-server/project/delete?input=PROJECT-2 \
-H "Authorization: Bearer <token>"