From d97dcb34962e36be32a6980f04f12ebd7bd16ac6 Mon Sep 17 00:00:00 2001 From: lardo_de_arnaud Date: Tue, 13 Jan 2026 18:25:53 +0000 Subject: [PATCH 1/2] AB#111051 Add more details to readme --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a22b6da..06115bd 100644 --- a/README.md +++ b/README.md @@ -355,7 +355,7 @@ To get a specific tool by ID: curl -u "user:pass1234" http://localhost:8080/admin/tools/04a0aa49-a74f-4dd1-96c5-895c8d68d776 ``` -The API also supports looks by lti/proxy client ID and registration ID, the supported ID prefixes are: +The API also supports look ups by lti/proxy client ID and registration ID, the supported ID prefixes are: - `ltiClientId:` - `ltiRegistrationId:` - `proxyClientId:` @@ -365,9 +365,18 @@ For example to lookup by a client ID of `123450000000000678`: ``` curl -u "user:pass1234" http://localhost:8080/admin/tools/ltiClientId:123450000000000678 ``` +or for an LTI Registration ID + +``` +curl -u "user:pass1234" http://localhost:8080/admin/tools/ltiRegistrationId:my-lovely-lti-tool +``` + +All other operations will need to reference the tool's ID so the value should be copied. **UPDATE:** +An update can be made by citing the tool's ID + ``` curl -u "user:pass1234" -d '{ "id": "93f3fab4-0559-420b-b1d4-9d4a62a896ec", @@ -426,6 +435,8 @@ curl -u "user:pass1234" -d '{ **DELETE:** +A tool cqan be deleted by citing the tool's ID + ``` curl -u "user:pass1234" -X DELETE http://localhost:8080/admin/tools/04a0aa49-a74f-4dd1-96c5-895c8d68d776 ``` From bffcfea3aea6bedc6ac32f270ae74cf91594a123 Mon Sep 17 00:00:00 2001 From: Adam Marshall Date: Tue, 13 Jan 2026 18:31:52 +0000 Subject: [PATCH 2/2] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 06115bd..f9d2e12 100644 --- a/README.md +++ b/README.md @@ -435,7 +435,7 @@ curl -u "user:pass1234" -d '{ **DELETE:** -A tool cqan be deleted by citing the tool's ID +A tool can be deleted by citing the tool's ID ``` curl -u "user:pass1234" -X DELETE http://localhost:8080/admin/tools/04a0aa49-a74f-4dd1-96c5-895c8d68d776