Skip to main content
POST
/
api
/
test
/
url
Retrieves an institution associated with a specific test URL (LTI Context)
curl --request POST \
  --url https://pria.praxislxp.com/api/test/url \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://domain.edu/7891273"
}'
{
  "ltiassigned": true,
  "name": "29167765.hugo770126995.",
  "status": "active",
  "ainame": "",
  "picture": "",
  "publicId": "bc6efd03-9d01-43e7-bd49-c4af1c54ae3a"
}

Body

application/json
url
string<uri>
required

The URL to be tested

Example:

"https://domain.edu/7891273"

Response

URL test completed successfully

ltiassigned
boolean

Indicates if LTI is assigned

Example:

true

name
string

Generated name identifier

Example:

"29167765.hugo770126995."

status
string

Current status of the test

Example:

"active"

ainame
string

AI name associated with the test

Example:

""

picture
string

Picture URL or identifier

Example:

""

publicId
string<uuid>

Public identifier for the test

Example:

"bc6efd03-9d01-43e7-bd49-c4af1c54ae3a"

I