Files
m3o-go/examples/lists/delete/deleteAList/main.go
2022-02-20 12:02:04 +00:00

18 lines
288 B
Go
Executable File

package main
import (
"fmt"
"os"
"go.m3o.com/lists"
)
// Delete a list
func main() {
listsService := lists.NewListsService(os.Getenv("M3O_API_TOKEN"))
rsp, err := listsService.Delete(&lists.DeleteRequest{
Id: "63c0cdf8-2121-11ec-a881-0242e36f037a",
})
fmt.Println(rsp, err)
}