List all ECM source types
Returns a list of available ECM source types, including each type's name and whether users can configure sources of that type.
Filter source types by mode flag.
Sorting options
List of ECM source types retrieved successfully.
Unique identifier of Source type
Display name of the source type
Indicates whether the user can set this source type
HATEOAS links associated with the entity
Request blocked by WAF
curl -X GET \
"https://{instance}.kiteworks.com/rest/sourceTypes" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
url = "https://{instance}.kiteworks.com/rest/sourceTypes"
headers = {
"Authorization": "Bearer YOUR_TOKEN",
}
response = requests.get(url, headers=headers)
print(response.json())Returns requested ECM source type
Returns the details of the specified ECM source type, including its name and whether users can configure sources of that type.
ID of the sourceType to be retrieved
ECM source type details retrieved successfully.
Unique identifier of Source type
Display name of the source type
Indicates whether the user can set this source type
HATEOAS links associated with the entity
Request blocked by WAF
curl -X GET \
"https://{instance}.kiteworks.com/rest/sourceTypes/:id" \
-H "Authorization: Bearer YOUR_TOKEN"import requests
id = "VALUE" # ID of the sourceType to be retrieved
url = f"https://{{instance}}.kiteworks.com/rest/sourceTypes/{id}"
headers = {
"Authorization": "Bearer YOUR_TOKEN",
}
response = requests.get(url, headers=headers)
print(response.json())