Gets the settings for your account.
curl --request GET \ --url https://api.sandbox.metriport.com/settings \ --header 'x-api-key: <api-key>'
import { MetriportMedicalApi } from "@metriport/api-sdk"; const metriportClient = new MetriportMedicalApi("YOUR_API_KEY"); const response = await metriportClient.getSettings();
The settings ID.
Your application’s webhook URL.
The key used to authenticate webhook calls to your app.
Example response:
{ "id": "<settings-id>", "webhookUrl": "https://server.domain.com/webhook/endpoint", "webhookKey": "<webhook-key>" }