Skip to main content
DELETE
/
v1
/
lca
/
portfolio
/
{lca_id}
Delete LCA Portfolio
const options = {
  method: 'DELETE',
  headers: {'x-api-key': '<x-api-key>', 'x-organization-id': '<x-organization-id>'}
};

fetch('https://api.dcycle.io/v1/lca/portfolio/{lca_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

Delete LCA Portfolio

Permanently deletes an LCA portfolio and all its associated blocks, connections, and impact data. This action cannot be undone.
Permanent Action: Deleting an LCA portfolio removes all its process blocks, product definitions, and calculated impact data. This cannot be reversed.

Request

Headers

x-api-key
string
required
Your API key for authenticationExample: sk_live_1234567890abcdef
x-organization-id
string
required
Your organization UUIDExample: a8315ef3-dd50-43f8-b7ce-d839e68d51fa

Path Parameters

lca_id
string
required
UUID of the LCA portfolio to deleteExample: 550e8400-e29b-41d4-a716-446655440000

Response

Returns true on successful deletion (HTTP 200).
true

Example

curl -X DELETE "https://api.dcycle.io/v1/lca/portfolio/${LCA_ID}" \
  -H "x-api-key: ${DCYCLE_API_KEY}" \
  -H "x-organization-id: ${DCYCLE_ORG_ID}"

Common Errors

401 Unauthorized

Cause: Missing or invalid API key
{"detail": "Invalid API key for organization", "code": "INVALID_API_KEY"}

403 Forbidden

Cause: The authenticated user is not a member of the organization
{"detail": "Logged User is not Member of Organization", "code": "LOGGED_USER_NOT_MEMBER"}

404 Not Found

Cause: LCA portfolio not found or doesn’t belong to your organization
{"detail": "LCA Portfolio not found"}

List LCA Portfolios

Browse all LCA portfolios

Get LCA Portfolio

View portfolio details before deleting

Create LCA Portfolio

Create a new portfolio