ID
Size: a a a
ID
ID
ID
DL
ID
DL
ID
ID
ID
DL
DL
(defn api-call
[method path path-params query-params body options]
(let [url (fold-path path path-params)
req (cond-> (merge options {:method method :url url})
query-params (merge {:query-params (camel-caseize query-params)})
body (merge {:body (json/generate-string (camel-caseize body))}))]
(client/request (merge req curl-options))))
ID
ID
DL
DL
ID
ID