List the types of SCIM Resources available
curl --request GET \
--url https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes \
--header 'None: <api-key>'import requests
url = "https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes"
headers = {"None": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {None: '<api-key>'}};
fetch('https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"None: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("None", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes")
.header("None", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["None"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"description": "<string>",
"endpoint": "<string>",
"id": "<string>",
"name": "<string>",
"schema": "<string>",
"schemaExtensions": [
{
"required": true,
"schema": "<string>"
}
],
"schemas": [
"<string>"
]
}
]SCIM
List the types of SCIM Resources available
deprecated
GET
/
api2
/
v1
/
scim
/
ResourceTypes
List the types of SCIM Resources available
curl --request GET \
--url https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes \
--header 'None: <api-key>'import requests
url = "https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes"
headers = {"None": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {None: '<api-key>'}};
fetch('https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"None: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("None", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes")
.header("None", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.memsource.com/web/api2/v1/scim/ResourceTypes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["None"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"description": "<string>",
"endpoint": "<string>",
"id": "<string>",
"name": "<string>",
"schema": "<string>",
"schemaExtensions": [
{
"required": true,
"schema": "<string>"
}
],
"schemas": [
"<string>"
]
}
]Authorizations
No authentication required. This is used for public endpoints.
Response
OK
Human-readable description of the resource type
Relative URI path for accessing resources of this type
Unique identifier for this resource type
Human-readable name of the resource type
URN of the primary SCIM schema for this resource type
Schema extensions applied to this resource type
Show child attributes
Show child attributes
SCIM schemas declaring the resource type
Was this page helpful?
⌘I