npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

newsletter2-go-api

v1.0.0

Published

<h5>JSON first</h5><br/>Our REST API exchanges data in the JSON data format. Every parameter you pass (with a few exceptions e.g. when you upload files) should therefore be formatted in JSON and our API will always return results in JSON as well.<br/><br/

Downloads

3

Readme

newsletter2-go-api-(https://api/newsletter2go/com)

Newsletter2GoApi(https:ApiNewsletter2goCom) - JavaScript client for newsletter2-go-api-(https://api/newsletter2go/com)

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build date: 2016-06-08T06:59:42.502Z
  • Build package: class io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install newsletter2-go-api-(https://api/newsletter2go/com) --save

git

If the library is hosted at a git repository, e.g. https://github.com/YOUR_USERNAME/newsletter2-go-api-(https://api/newsletter2go/com) then install it via:

    npm install YOUR_USERNAME/newsletter2-go-api-(https://api/newsletter2go/com) --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Getting Started

Please follow the installation instruction and execute the following JS code:

var Newsletter2GoApi(https:ApiNewsletter2goCom) = require('newsletter2-go-api-(https://api/newsletter2go/com)');

var defaultClient = Newsletter2GoApi(https:ApiNewsletter2goCom).ApiClient.default;

// Configure OAuth2 access token for authorization: OAuth
var OAuth = defaultClient.authentications['OAuth'];
OAuth.accessToken = "YOUR ACCESS TOKEN"

var api = new Newsletter2GoApi(https:ApiNewsletter2goCom).AttributeApi()

var attribute = new Newsletter2GoApi(https:ApiNewsletter2goCom).AttributePost(); // {AttributePost} the data to save


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createAttribute(attribute, callback);

Documentation for API Endpoints

All URIs are relative to https://api.newsletter2go.com

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- Newsletter2GoApi(https:ApiNewsletter2goCom).AttributeApi | createAttribute | POST /attributes | creates a new attribute Newsletter2GoApi(https:ApiNewsletter2goCom).AttributeApi | deleteAttribute | DELETE /lists/{lid}/attributes/{id} | delete the attribute Newsletter2GoApi(https:ApiNewsletter2goCom).AttributeApi | getAttributes | GET /lists/{lid}/attributes | get all Attributes of selected list Newsletter2GoApi(https:ApiNewsletter2goCom).AttributeApi | updateAttribute | PATCH /attributes/{id} | update the attribute Newsletter2GoApi(https:ApiNewsletter2goCom).AuthorizationApi | getToken | POST /oauth/v2/token | Endpoint for retrieving a token Newsletter2GoApi(https:ApiNewsletter2goCom).CompanyApi | getCompany | GET /companies | get the details of a company Newsletter2GoApi(https:ApiNewsletter2goCom).CompanyApi | updateCompany | PATCH /companies/{id} | update the Company Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | addRecipientToGroup | POST /lists/{lid}/groups/{gid}/recipients/{id} | add single recipient to group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | addRecipientsToGroup | POST /lists/{lid}/groups/{gid}/recipients | add all Recipients to the given group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | createGroup | POST /groups | creates a new group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | deleteGroup | DELETE /groups/{id} | delete the Group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | getGroups | GET /lists/{lid}/groups | get all Group of selected list Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | getRecipientsByGroup | GET /lists/{lid}/groups/{gid}/recipients | get all Recipients of selected group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | removeRecipientFromGroup | DELETE /lists/{lid}/groups/{gid}/recipients/{id} | remove single recipient from group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | removeRecipientsFromGroup | DELETE /lists/{lid}/groups/{gid}/recipients | remove all Recipients from given group Newsletter2GoApi(https:ApiNewsletter2goCom).GroupApi | updateGroup | PATCH /groups/{id} | update the Group Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | createList | POST /lists | creates a new list Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | deleteList | DELETE /lists/{id} | delete the List Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | getLists | GET /lists | get all lists Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | getRecipients | GET /lists/{lid}/recipients | get all Recipients of selected list Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | removeRecipientsFromList | DELETE /lists/{lid}/recipients | remove all Recipients from selected list Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | updateList | PATCH /lists/{id} | update the List Newsletter2GoApi(https:ApiNewsletter2goCom).ListApi | updateRecipients | PATCH /lists/{lid}/recipients | update all Recipients in selected list Newsletter2GoApi(https:ApiNewsletter2goCom).NewsletterApi | createNewsletter | POST /lists/{lid}/newsletters | creates a new newsletter Newsletter2GoApi(https:ApiNewsletter2goCom).NewsletterApi | getNewsletter | GET /newsletters/{id} | get one newsletter Newsletter2GoApi(https:ApiNewsletter2goCom).NewsletterApi | getNewsletters | GET /lists/{lid}/newsletters | get all newsletters of the given list Newsletter2GoApi(https:ApiNewsletter2goCom).NewsletterApi | getReports | GET /lists/{lid}/newsletters/{nid}/aggregations | get reports for the newsletter aggregated by days Newsletter2GoApi(https:ApiNewsletter2goCom).NewsletterApi | sendNewsletter | POST /newsletters/{id}/send | Sends the newsletter to a list or group Newsletter2GoApi(https:ApiNewsletter2goCom).NewsletterApi | updateNewsletter | PATCH /newsletters/{id} | update the Newsletter Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | addRecipientToGroup | POST /lists/{lid}/groups/{gid}/recipients/{id} | add single recipient to group Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | addRecipientsToGroup | POST /lists/{lid}/groups/{gid}/recipients | add all Recipients to the given group Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | createRecipient | POST /recipients | create new recipient(s) or updates existing ones Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | deleteRecipient | DELETE /lists/{lid}/recipients/{id} | delete the recipient Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | getRecipients | GET /lists/{lid}/recipients | get all Recipients of selected list Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | getRecipientsByGroup | GET /lists/{lid}/groups/{gid}/recipients | get all Recipients of selected group Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | importRecipientsInit | POST /lists/{lid}/recipients/import/init | Initialize the import of recipients by file Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | importRecipientsSave | POST /lists/{lid}/recipients/import/save | Start the import recipients by file Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | importRecipientsStatistics | GET /import/{id}/info | Get statistics about the import by file Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | removeRecipientFromGroup | DELETE /lists/{lid}/groups/{gid}/recipients/{id} | remove single recipient from group Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | removeRecipientsFromGroup | DELETE /lists/{lid}/groups/{gid}/recipients | remove all Recipients from given group Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | removeRecipientsFromList | DELETE /lists/{lid}/recipients | remove all Recipients from selected list Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | subscribeRecipient | POST /forms/submit/{code} | Creates a new recipient and sends a DOI-Mail Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | updateRecipient | PATCH /lists/{lid}/recipients/{id} | update the recipient. Newsletter2GoApi(https:ApiNewsletter2goCom).RecipientApi | updateRecipients | PATCH /lists/{lid}/recipients | update all Recipients in selected list Newsletter2GoApi(https:ApiNewsletter2goCom).ReportApi | getReports | GET /lists/{lid}/newsletters/{nid}/aggregations | get reports for the newsletter aggregated by days Newsletter2GoApi(https:ApiNewsletter2goCom).UserApi | getUsers | GET /users | get all users of the company where the current user has access to Newsletter2GoApi(https:ApiNewsletter2goCom).UserApi | updateUser | PATCH /users/{id} | update the user

Documentation for Models

Documentation for Authorization

OAuth

  • Type: OAuth
  • Flow: implicit
  • Authorization URL: /oauth/v2/token
  • Scopes: N/A

Basic

  • Type: HTTP basic authentication