Categorygithub.com/darimm/striven
repositorypackage
0.0.0-20210209125441-7fcf44b65b36
Repository: https://github.com/darimm/striven.git
Documentation: pkg.go.dev

# README

Golang implementation of the Striven API ( https://api.striven.com ) This project is in no way officially affiliated with Striven.

Example Code (Note - this is very bad form. Do not put your API IDs and Secret in your code):

package main

import (
  "fmt"
  
  "github.com/darimm/striven"
)

func main() {
  s := striven.New("MYCLIENTID", "MYCLIENTSECRET")
  fmt.println(s.Token.AccessToken)
 
  resp, err := s.Employees.GetAll()
  
  if err != nil {
    fmt.Println(err)
  }
  fmt.Println(resp)
 }

Current Status: Incomplete.

APIs Implemented (Checkmark means Completely implemented)

APIs Not Implemented

  • Bills
  • Categories
  • CreditMemos
  • GLAcconuts
  • Invoices
  • Items
  • JournalEntries
  • Opportunities
  • Payments
  • Purchase Orders
  • SalesOrders
  • Tasks
  • UserInfo
  • Vendors