Get Payment Methods by Country

https://app.myhealthnote.com/api/fhir/Dash/system/payment-methods
SYSTEM API GET ACTIVE 200/hour v1.0.0
Description

Retrieve the list of supported and acceptable payment methods for various countries and currencies within the MyHealthNote Ecosystem.

Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/payment-methods
Request Examples

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/system/payment-methods" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Accept: application/json"

JavaScript/Node.js

const response = await fetch("https://app.myhealthnote.com/api/fhir/Dash/system/payment-methods", {
    headers: {
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
});

const data = await response.json();
console.log(data);

Python

import requests

response = requests.get(
    "https://app.myhealthnote.com/api/fhir/Dash/system/payment-methods",
    headers={
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
)

print(response.json())
Parameters
Parameter Type Required Default Description
country string Yes - Country code (e.g., US, GB, DE)
currency string No USD Currency code
Response Example
{
  "resourceType": "Bundle",
  "entry": [
    {
      "resource": {
        "resourceType": "ValueSet",
        "title": "IBAN - Germany",
        "extension": [
          {
            "url": "wiseType",
            "valueCode": "iban"
          }
        ]
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: