Expand my Community achievements bar.

SOLVED

Is there an SDK I can use for the data insertion API?

Avatar

Level 2

I've been given a CURL request that builds on this API... https://helpx.adobe.com/uk/analytics/kb/data-insertion-api-post-method-adobe-analytics.html.

And at the moment I am building this request manually in my project firefly action.

I was wondering if there's an SDK I can install using NPM that will provide some convenience methods around this instead of building the request manually?

Thanks

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi @oliverf82757722 , the Firefly SDK for Adobe Analytics only supports the API 2.0.

Unfortunately the Data Insertion API is only available in API 1.4, not 2.0, according to: https://www.adobe.io/apis/experiencecloud/analytics/docs.html#!AdobeDocs/analytics-2.0-apis/master/m....

Hence, you would need to make the HTTP requests using `node-fetch`.

View solution in original post

4 Replies

Avatar

Correct answer by
Employee

Hi @oliverf82757722 , the Firefly SDK for Adobe Analytics only supports the API 2.0.

Unfortunately the Data Insertion API is only available in API 1.4, not 2.0, according to: https://www.adobe.io/apis/experiencecloud/analytics/docs.html#!AdobeDocs/analytics-2.0-apis/master/m....

Hence, you would need to make the HTTP requests using `node-fetch`.

Avatar

Level 2
Thanks for the update. I'll continue on with the node-fetch approach. Thanks