Files
m3o-go/examples/location/read/getLocationById/main.go
2021-12-09 15:06:12 +00:00

18 lines
278 B
Go
Executable File

package main
import (
"fmt"
"os"
"go.m3o.com/location"
)
// Read an entity by its ID
func main() {
locationService := location.NewLocationService(os.Getenv("M3O_API_TOKEN"))
rsp, err := locationService.Read(&location.ReadRequest{
Id: "1",
})
fmt.Println(rsp, err)
}