This article describes different ways to find catalog admins via the Learn365 API:
View a list of all catalogs with their admins
1. Go to https://api.365.systems/ and make sure you are authorized with the relevant API key.
2. In the CourseCatalogs section, select the GET /odata/v2/CourseCatalogs endpoint and select Try it out in the top right-hand corner.
3. In the $expand field, enter the word Owners.
4. Select Execute to run the request.
5. Go to the Response block to check the results:
- 200 code with a list of course catalogs indicates a successful response. Each course catalog from this list contains the Owners array that lists details of all catalog admins, including their Id, LoginName, Title (full name), etc.
- In case of errors, the response body contains the error object with the code and message keys explaining the issue.
View a list of admins of a particular catalog
To find a list of admins of a particular catalog, you’ll need the course catalog ID. You can find this via the API by following the steps in this article.
To find catalog admins of the course catalog:
1. Go to https://api.365.systems/ and make sure you are authorized with the relevant API key.
2. In the CourseCatalogs section, select the GET /odata/v2/CourseCatalogs({Id}) endpoint and select Try it out in the top right-hand corner.
3. In the Id field, enter the course catalog ID.
4. In the $expand field, enter the word Owners.
5. Select Execute to run the request.
6. Go to the Response block to check the results:
- 200 code with course catalog details indicates a successful response. The details include the Owners array that lists details of all catalog admins, including their Id, LoginName, Title (full name), etc.
- In case of errors, the response body contains the error object with the code and message keys explaining the issue.
Comments
Article is closed for comments.