This is the implementation of a client library (written in golang) in order to interact with Satispay online API.
In order to include this client in your project run:
go get github.com/charliemaiors/satispay-client
And use it in your code:
import client "github.com/charliemaiors/satispay-client"
func main(){
client, err := client.NewClient("your-satispay-token", false)
valid := client.CheckBearer()
user, err := client.CreateUser("user-phone-number")
...
}