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));
import requests

url = "https://api.dcycle.io/v1/lca/portfolio/{lca_id}"

headers = {
    "x-api-key": "<x-api-key>",
    "x-organization-id": "<x-organization-id>"
}

response = requests.delete(url, headers=headers)

print(response.text)
curl --request DELETE \
  --url https://api.dcycle.io/v1/lca/portfolio/{lca_id} \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-organization-id: <x-organization-id>'

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}"
import requests
import os

lca_id = "550e8400-e29b-41d4-a716-446655440000"

response = requests.delete(
    f"https://api.dcycle.io/v1/lca/portfolio/{lca_id}",
    headers={
        "x-api-key": os.getenv("DCYCLE_API_KEY"),
        "x-organization-id": os.getenv("DCYCLE_ORG_ID"),
    },
)

if response.json() is True:
    print("LCA portfolio deleted successfully")
const axios = require('axios');

const lcaId = '550e8400-e29b-41d4-a716-446655440000';

axios.delete(`https://api.dcycle.io/v1/lca/portfolio/${lcaId}`, {
  headers: {
    'x-api-key': process.env.DCYCLE_API_KEY,
    'x-organization-id': process.env.DCYCLE_ORG_ID,
  },
})
.then(({ data }) => {
  if (data === true) {
    console.log('LCA portfolio deleted successfully');
  }
});

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