Get service information
curl --request GET \
--url https://api.kintra.io/api/v1/infoconst options = {method: 'GET'};
fetch('https://api.kintra.io/api/v1/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.kintra.io/api/v1/info"
response = requests.get(url)
print(response.text){
"data": {
"description": "<string>",
"documentation": "<string>",
"name": "<string>",
"versions": {
"v1": "<string>"
}
},
"success": true
}Service
Get service information
Returns the service name, a short description, a documentation link and the API versions this deployment serves. It takes no credentials, so it also answers as a liveness check.
GET
/
info
Get service information
curl --request GET \
--url https://api.kintra.io/api/v1/infoconst options = {method: 'GET'};
fetch('https://api.kintra.io/api/v1/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.kintra.io/api/v1/info"
response = requests.get(url)
print(response.text){
"data": {
"description": "<string>",
"documentation": "<string>",
"name": "<string>",
"versions": {
"v1": "<string>"
}
},
"success": true
}⌘I

