Get the OpenAPI document
curl --request GET \
--url https://api.onlyform.com/v1/openapi.jsonconst options = {method: 'GET'};
fetch('https://api.onlyform.com/v1/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.onlyform.com/v1/openapi.json"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.onlyform.com/v1/openapi.json"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{}Identity
Get the OpenAPI document
GET
https://api.onlyform.com
/
v1
/
openapi.json
Get the OpenAPI document
curl --request GET \
--url https://api.onlyform.com/v1/openapi.jsonconst options = {method: 'GET'};
fetch('https://api.onlyform.com/v1/openapi.json', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.onlyform.com/v1/openapi.json"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.onlyform.com/v1/openapi.json"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{}Response
200 - application/json
The current OpenAPI document.
The response is of type object.
Was this page helpful?
⌘I