Skip to main content
GET
/
api
/
admin
/
account
/
{id}
Get account by ID
curl --request GET \
  --url https://pria.praxislxp.com/api/admin/account/{id} \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "_id": "<string>",
    "name": "<string>",
    "managerEmail": "jsmith@example.com",
    "credits": 123,
    "domainUrls": [
      "<string>"
    ],
    "qualification": "<string>",
    "created": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Path Parameters

id
string
required

Account ID

Response

Account retrieved successfully

success
boolean
data
object