MCPcopy Create free account
hub / github.com/cronitorio/cronitor-cli / POST

Method POST

lib/api_client.go:136–138  ·  view source on GitHub ↗

POST makes a POST request

(endpoint string, body []byte, queryParams map[string]string)

Source from the content-addressed store, hash-verified

134
135// POST makes a POST request
136func (c *APIClient) POST(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {
137 return c.Request("POST", endpoint, body, queryParams)
138}
139
140// PUT makes a PUT request
141func (c *APIClient) PUT(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {

Calls 1

RequestMethod · 0.95