POST
/
api
/
admin
/
institutions
Retrieve list of institutions
curl --request POST \
  --url https://pria.praxislxp.com/api/admin/institutions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "minimum": true
}'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "picture": "<string>",
      "credits": 123,
      "creditsUsed": 123,
      "creditsAwarded": 123,
      "status": "active",
      "publicId": "<string>",
      "publicAuthorizedUrls": [
        "<string>"
      ],
      "ainame": "<string>",
      "contactEmail": "<string>",
      "poolCredits": true,
      "created": "2023-11-07T05:31:56Z",
      "conversationModel": "<string>",
      "account": {
        "_id": "<string>",
        "name": "<string>"
      },
      "maxCompletionTokens": 123,
      "creditsTotal": 123,
      "creditsUsagePct": 123,
      "id": "<string>",
      "displayAgentDetails": true
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token passed in x-access-token header

Body

application/json

Response

Successfully retrieved institutions list

The response is of type object.