/
Fetch A Player Membership Status
Fetch A Player Membership Status
Overview
You can lookup a USTA player membership status given a USTA uaid. API will provide membership status information i.e. active, inactive, cancelled etc.
API
This API is called once per player.
URI
Production:
POST https://api-ustaconnect.usta.com/v1/api-public/membership/status
Stage:
POST https://stage-api-ustaconnect.usta.com/v1/api-public/membership/status
Body
{
"uaid":"2017000162"
}
Response
One player play history is returned per call.
{
"membershipStatus": "ACTIVE"
}
Sample Curl
You must first retrieve an access token using Bound or Unbound method. See STAGE2 - OKTA Auth0 Client Integration Guide for more on how to request a token.
The following is a sample curl to retrieve a player membership status.
Where:
--header 'Authorization: Bearer eyJraW...
specifies the token that you retrieved using the https://account-ustaconnect.usta.com/oauth2/token endpoint.
curl --location 'https://api-ustaconnect.usta.com/v1/api-public/membership/status' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJraW...
--data '{
"uaid":"2017000162"
}'
On This Page:
, multiple selections available,
Related content
Fetch Player Safeplay Status
Fetch Player Safeplay Status
More like this
Fetch A Player Limited Profile
Fetch A Player Limited Profile
More like this
Fetch A Player WTN Rating
Fetch A Player WTN Rating
More like this
Bulk Fetch of Players WTN Ratings
Bulk Fetch of Players WTN Ratings
Read with this
Fetch USTA Player UAID
Fetch USTA Player UAID
More like this
Create A Player
Create A Player
More like this