List Management Systems
Retrieve a list of all available management systems for your account.
Authorization OAuth 2.0
This request requires OAuth 2.0 authorization.
Header Parameters
Response Parameters
GET /api/v1/resources/management-systems
sh
curl --request GET \
--get "https://api.decisioncloud.me/api/v1/resources/management-systems" \
--header "Authorization: Bearer {ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"js
const url = new URL(
"https://api.decisioncloud.me/api/v1/resources/management-systems"
);
const headers = {
"Authorization": "Bearer {ACCESS_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());php
$client = new \GuzzleHttp\Client();
$response = $client->get(
'https://api.decisioncloud.me/api/v1/resources/management-systems',
[
'headers' => [
'Authorization' => 'Bearer {ACCESS_TOKEN}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));py
import requests
import json
url = 'https://api.decisioncloud.me/api/v1/resources/management-systems'
headers = {
'Authorization': 'Bearer {ACCESS_TOKEN}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()json
{
"data": [
{
"id": 3,
"name": "Infinity"
},
{
"id": 6,
"name": "Totality"
}
]
}