knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/"
)
set.seed(101315)

shipstationr

Get Ship Done.

Overview

Access the ShipStation API using R.

Installation

# Install development version from GitHub
devtools::install_github("anthonypileggi/shipstationr")

Setup

To use the shipstationr package, you need to first setup some environment variables.

SHIPSTATION_API_KEY = "your_api_key"
SHIPSTATION_API_SECRET = "your_api_secret"
SHIPSTATION_STORE_ID = "your_store_id"

If setup correctly, you should be able to use package functions.

library(shipstationr)

# How many user accounts are setup?
nrow(ss_get_users())


anthonypileggi/shipstationr documentation built on Aug. 8, 2020, 10:27 a.m.