Skip to main content
Question

Status 403 transformation error for Asset named Dutta2026

  • June 8, 2026
  • 2 replies
  • 25 views

hi,

 

I am taking up the course for data modelling and facing some issues for transformation.

Have created an asset named Dutta2026 and while running transformation I receive the error below. Can somebody help me troubleshoot it please? I think it is some kind of access block.

 

[ASSETS] Request with id a8ff7523-7c66-9300-82e5-37961456d56d to https://api.cognitedata.com/api/v1/projects/cdf-fundamentals/assets failed with status 403: Resource not found. This may also be due to insufficient access rights.

2 replies

Akshay Chougule
Practitioner ⭐️⭐️⭐️
Forum|alt.badge.img+3
  • Practitioner ⭐️⭐️⭐️
  • June 9, 2026

Hi ​@Sushmita  To start with, just to make sure you have followed the steps mentioned in the course and that you have used the correct naming conventions as specified in the course. Please cross-verify and confirm the same. If yes, will proceed with the next debugging steps.


  • Author
  • Seasoned ⭐️
  • June 9, 2026

Hi ​@Akshay Chougule ,

These are the steps I followed as per the instructions:

  1. From the staging area(under integrate) in data fusion uploaded the raw document with the asset name Dutta2026.
  2. From the transformation (under integrate) in data fusion performed transformation with the following SQL code provided by the academy:

SELECT
  concat('Dutta2026:', loc) as externalId,
  CAST(lastUpdatedTime AS STRING) AS name,
  description AS description,
  if(
    parent_loc == ''
    OR parent_loc == null,
    null,
    node_reference(
      'cdf-fundamentals',
      concat('Dutta2026:', parent_loc)
    )
  ) as parent 
FROM
  `Dutta2026`.assets

Ofcourse I have replaced the asset name to Dutta2026

  1. Previewed and run and recived the following error “[ASSETS] Request with id 889312c5-8706-95bc-bfe9-342f77b30f76 to https://api.cognitedata.com/api/v1/projects/cdf-fundamentals/assets failed with status 403: Resource not found. This may also be due to insufficient access rights.”

These are the steps suggested by the academy too. Please suggest if I am missing something.