Path Parameters
The slug of the WellSky connection.
Body
application/json
The data to add the patient to WellSky.
Response
Default Response
The response is of type any.
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>"Add a patient to WellSky.
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>"The slug of the WellSky connection.
The data to add the patient to WellSky.
Show child attributes
Default Response
The response is of type any.