Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/flip-id/sms-zenziva

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/flip-id/sms-zenziva

  • v1.0.2
  • Source
  • Go
  • Socket score

Version published
Created
Source

zenziva

Go Report Card

Package zenziva is a library to use the Zenziva service. This library uses Hystrix client as its underlying HTTP client.

Documentation

To show the documentation of the package, we can check the code directly or by running this command:

make doc

This will open the package documentation in local. We can access it in http://localhost:6060/pkg/github.com/flip-id/sms-zenziva.

Example

This library can be used based on the example shown in the URL below:

http://localhost:6060/pkg/github.com/flip-id/sms-zenziva/#example_NewV1

Script:

package main

import (
	"fmt"
	"log"
	"net/http"
)

func main() {
	c, err := NewV1(
		WithUserKey("userkey"),
		WithPasswordKey("passwordkey"),
		WithClient(http.DefaultClient),
	)
	if err != nil {
		log.Fatal(err)
	}

	resp, err := c.SendSMSV1(RequestSendSMSV1{
		PhoneNumber: "+6281001002003",
		Text:        "Hello Zenziva!",
	})
	if err != nil {
		log.Fatal(err)
	}

	fmt.Printf("Resp: %+v\n", resp)
}

FAQs

Package last updated on 02 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc