Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

https://services.usta.com/v1

...

VerbAPI CallDescription
GET/organizations/{uaid}Retrieve organization details using the supplied organization uaid.
GET/organizations/{uaid}/facilitiesRetrieve list of facility ids linked to the supplied organization uaid.
GET/organizations/{uaid}/assignedRolesRetrieve list of role codes linked to the supplied organization uaid.

Facilities

VerbAPI CallDescription
GET/facilities/{id}Retrieve facility details using the supplied facility id.
POST/facilitiesCreate a new facility.

Organization Search

VerbAPI CallDescription
GET/v1/organizations/search/byFacilityId?facilityId={id}Look up organization details by facility id.

...