Skip to content

darimm/striven

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Striven API library implementation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages