Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
iubenda-consent-solution-api
Advanced tools
API client to implement Iubenda Consent Solution in backend service
API client to implement Iubenda Consent Solution in backend service.
npm install iubenda-consent-solution-api
This library implements all methods described in Official Iubenda Guide.
import {IubendaConsentSolution} from 'iubenda-consent-solution-api';
const validApiKey = 'YOUR-VALID-IUBENDA-API-KEY';
const client = new IubendaConsentSolution({apiKey: validApiKey});
if the request returns an error you will get an object like the following:
interface ResponseError {
error: boolean;
status: number;
message: string;
}
Look Iubenda (Official Guide)
const result = await client.getConsents();
Look Iubenda (Official Guide)
const id = 'consent-id'
const result = await client.getConsent(id);
Look Iubenda (Official Guide)
const consent: ConsentExtended = {};//Set your fields
const result = await client.createConsent(consent);
Look Iubenda (Official Guide)
const result = await client.getSubjects();
Look Iubenda (Official Guide)
const id = 'subject-id'
const result = await client.getSubject(id);
Look Iubenda (Official Guide)
const subject: Subject = {};//Set your fields
const result = await client.createSubject(subject);
Look Iubenda (Official Guide)
const id = 'subject-id'
const subject: Subject = {};//Set your fields
const result = await client.updateSubject(subject, id);
FAQs
API client to implement Iubenda Consent Solution in backend service
The npm package iubenda-consent-solution-api receives a total of 3 weekly downloads. As such, iubenda-consent-solution-api popularity was classified as not popular.
We found that iubenda-consent-solution-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.