Account Registration¶
Prerequisites
Before using Sharecare API's please read the API Integration Guide
Register an Account¶
User registration must be completed prior to accessing user centric services
API
API Documentation¶
Refer to our API documentation for the most up to date specifications Simply click "Try it out" then "Execute" with the default values to see a live response.
Open API Doc
Example¶
Try out the curl as is for a static response OR Replace '5nLpWr' with your API key.
curl -X POST "https://gateway.uat.sharecare.com/account/register" \
-H 'X-API-Key: 5nLpWr' \
-H 'accept: */*' \
-H 'Content-Type: application/json' \
-d '{
"dateOfBirth": "1974-02-09",
"firstName": "Jane",
"gender": "FEMALE",
"lastName": "Doe",
"partnerAccountId": "genera.sharecare.1@gmail.com",
"postalCode": "30188"
}'
{
"accountId": "3895d3bb-5bb7-4a17-b14d-35c168a6c51a",
"partnerAccountId": "genera.sharecare.1@gmail.com"
}
IMPORTANT!
The accountId
or partnerAccountId
is required for user centric API calls. Please store accordingly.
Delete an Account¶
API
API Documentation¶
Refer to our API documentation for the most up to date specifications Simply click "Try it out" then "Execute" with the default values to see a live response.
Open API Doc
Example¶
Try out the curl as is for a static response OR Replace '5nLpWr' with your API key.
curl -X DELETE "https://gateway.uat.sharecare.com/account?accountReferenceType=partnerAccountId&accountReference={partnerAccountId}" \
-H 'X-API-Key: 5nLpWr' \
-H 'accept: */*'