This is partial implementation of simply.com dns provider's API. Any contribution is welcome in the form of PR's. Further documentation of the API can be found here.
Add this repository as go dependency.
import (
"github.com/runnerm/simply-com-client"
)
Create a new client with your API key.
client := CreateSimplyClient("accountName", "apiKey")
Use the client to interact with the API.
// Get record for a domain
records, err := client.GetRecord("example.com")
- GetRecord
- AddRecord
- RemoveRecord
- UpdateRecord
- UpdateDDNS