TIS Training API Documentation
  • Welcome!
  • Quick Start
  • Managing Users
  • Single Sign On (SSO)
    • General Options
    • Role and Group Mappings
    • Connection Types
      • Microsoft Entra ID (Formerly Azure AD)
      • Google Workspace
      • OpenID Connect (OIDC)
      • SAML (Security Assertion Markup Language)
  • SCORM Packages
  • Webhooks
  • API Reference
    • Users
      • 🔵GET users
      • 🔵GET users/seats
      • 🟢POST users
      • 🟠PUT users
      • 🟢POST users/password
      • 🟡PATCH users/enable
      • 🟡PATCH users/disable
      • 🔴DELETE users
    • Results
      • 🔵GET results
      • 🔵GET results/group
    • Groups
      • 🔵GET groups
      • 🟢POST groups/users
      • 🔴DELETE groups/users
    • 🔵GET courses
    • 🔵GET filters
    • 🟢POST login
    • â›”Standard Error Format
  • Webhook Reference
    • Standard Structure
    • Course Complete
    • Multi-Course Complete
  • OpenAPI Specification
Powered by GitBook
On this page
  • URL
  • Parameters
  • Responses
  1. API Reference
  2. Users

GET users/seats

Fetches the consumed and total user seats for an unlimited use organisation.

URL

GET https://training.tapintosafety.com.au/api/v2/users/seats

Parameters

No parameters available for this endpoint.

curl https://training.tapintosafety.com.au/api/v2/users/seats \
    -H "Authorization: Bearer $APIKey"

Responses

200 - OK

Details of the seats in use and the total available.

Name
Type
Description

seatsInUse

integer

The total number of seats currently consumed by users.

totalSeats

integer

The total number of seats available to the organisation.

{
    "seatsInUse": 372,
    "totalSeats": 500
}

400 - Bad Request

Error Code: NO_UNLIMITED_PLAN

Your organisation is not on an unlimited use plan.

PreviousGET usersNextPOST users

Last updated 9 months ago

🔵