Skip to main content
POST
/
api
/
v2
/
integrations
/
wellsky
/
{slug}
/
patients
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.integrations.wellsky.patients.add(
    slug="slug",
    data={
        "foo": "bar"
    },
)
print(response)
"<any>"

Path Parameters

slug
string
required

The slug of the WellSky connection.

Body

application/json
data
object
required

The data to add the patient to WellSky.

Response

Default Response

The response is of type any.