Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Overview

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

Request Headers

Requests must have this request type specified in the header.

keyvalue
content-typeapplication/json

Customer Personal Profile

VerbAPI CallDescription
GET
PUT
PATCH
/customer/{uaid}Retrieve/modify customer personal profile details.
GET/customers/{uaid}/childrenRetrieve a list of uaids for children linked to the specified account.
GET
PUT
/customers/{uaid}/addressesRetrieve/modify customer address.

GET
PUT

/customers/{uaid}/emailsRetrieve/modify customer personal emails.
GET
PUT
/customers/{uaid}/phonesRetrieve/modify customer personal phones.
GET/customers/{uaid}/membershipsRetrieve a list of USTA memberships associated with the supplied uaid.
GET/customers/{uaid}/subscriptions/latestRetrieve the most recent subscription details of the supplied uaid.
GET/customers/{uaid}/familyMembers/subscriptionsRetrieve a list of USTA subscription details for family members of the supplied uaid.
POST/customers/subscriptionsAdd a USTA subscription to a customer account.
GET/customers/{uaid}/organizationsRetrieve a list of organization uaids linked to the supplied uaid.
POST/customers/{uaid}/provider/facilitiesRetrieve a list of facility ids linked to the supplied uaid.
DELETE/customers/{uaid}/provider/facilities/{id}Remove a linked facility from the supplied uaid.

Organization Profile

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.

Provider Search

VerbAPI CallDescription
GET

/providers/search/byFirstNameLastNameLook up provider details by first and last name.

Swagger Documentation

  • No labels