e-Schooling API
  1. system
e-Schooling API
  • e-Schooling API
  • GETTING STARTED
    • Authorization
    • Defaults
  • entities
    • Gets all system entities
      GET
    • Gets a entity from its id
      GET
  • students
    • Gets all system students
      GET
    • Gets a student from its id
      GET
  • tutors
    • Gets all system tutors
      GET
    • Gets a tutor from its id
      GET
  • staffs
    • Gets all system staffs
      GET
    • Gets a staff from its id
      GET
  • teachers
    • Gets all system teachers
      GET
    • Gets a teacher from its id
      GET
  • system
    • Obtain tenant informations
      GET
  • sso
    • Single Sign-On
    • Generate OAuth2 Token
      POST
    • Get user info
      GET
  • Schemas
    • Schemas
      • BadRequestHttpException
      • EntitiesAddresses
      • EntitiesContacts
      • EntityBankAccount
      • EntitiesList
      • EntityIdentificationDocument
      • Entity
      • HttpStatusCode
      • InternalServerErrorHttpException
      • MethodBase
      • EntityIdentificationDocumentInsertRequest
      • NotFoundHttpException
      • NoContent
      • EntityInsertRequest
      • OAuthMeResponse
      • OAuthTokenResponse
      • ProblemDetails
      • Staff
      • StaffIdentificationDocumentInsertRequest
      • StaffInsertRequest
      • StaffsList
      • Student
      • StudentIdentificationDocumentInsertRequest
      • StudentInsertRequest
      • StudentsList
      • SystemStatus
      • Teacher
      • TeacherIdentificationDocumentInsertRequest
      • TeacherInsertRequest
      • TeachersList
      • Tutor
      • TutorIdentificationDocumentInsertRequest
      • TutorInsertRequest
      • TutorsList
  1. system

Obtain tenant informations

Sandbox server
https://api-sandbox.e-schooling.com
Sandbox server
https://api-sandbox.e-schooling.com
GET
/api/system/tenantinfo
Method that returns the tenant info based on the JWT token

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Header Params

Responses

🟢200OK
application/json
OK
Body

🟠401Unauthorized
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-sandbox.e-schooling.com/api/system/tenantinfo' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "tenantid": "d7569198-9d6a-43a5-a14c-19d772fa6f28",
    "tenantname": "Cody School",
    "tenantacronym": "Cody",
    "tenanttype": "Institution",
    "tenantmarket": "English",
    "timezone": "Europe/London",
    "culture": "en-UK",
    "financial_system": "ENGLISH",
    "financial_system_currency": "EUR",
    "internal_status": "Active",
    "build": "xxxxxxxxxxx",
    "isdemo": true,
    "istrial": false
}
Modified at 2025-04-09 14:10:01
Previous
Gets a teacher from its id
Next
Single Sign-On
Built with