...
This page describes how to structure your application to request data from USTA. This API is not restricted, or "unbound", to the data associated with the user for which the JWT token was requested. Users must be explicitly permissioned to access these endpoints.
Unbound APIs are designed to be accessed server side for machine-to-machine communication. It is not safe to implement Unbound APIs from the browser because the customer identity can be determined. Please use with care.
Base URL
...
Verb | API Call | Description |
---|---|---|
GET | /organizations/{uaid} | Retrieve organization details using the supplied organization uaid. |
GET | /organizations/{uaid}/facilities | Retrieve list of facility ids linked to the supplied organization uaid. |
GET | /organizations/{uaid}/assignedRoles | Retrieve list of role codes linked to the supplied organization uaid. |
Facilities
Verb | API Call | Description |
---|---|---|
GET | /facilities/{id} | Retrieve facility details using the supplied facility id. |
POST | /facilities | Create a new facility. |
Organization Search
Verb | API Call | Description |
---|---|---|
GET | /v1/organizations/search/byFacilityId?facilityId={id} | Look up organization details by facility id. |
...