Versions Compared

Key

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

Overview

Use these use-cases (with curl language examples) as a guide for your app development.

Notes:

  • Currently Sonde doesn’t support any measure with questionnaire, please contact Sonde at support@sondehealth.com. Please provide your company name and address in support ticket.

API Credentials

For all use-cases, you should have the following information (the following values are examples only):

...

Get the access-token with /wiki/spaces/SHPDV1/pages/1405517833 scopes sonde-platform/scores.write , sonde-platform/users.write, sonde-platform/questionnaires.read, sonde-platform/questionnaire-responses.write and sonde-platform/storage.write.

...

countryCode should be the country information which you have used while creating the account with Sonde Health (account creation is manual at this time).

Code Block
$ curl --request POST 'https://api.sondeservices.com/platform/v1/storage/files' \
--header 'Authorization: <access_token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "fileType": "wav",
  "countryCode": "US",
  "userIdentifier": "<userIdentifier>"
}'

...