from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.events.emit(
name="name",
)
print(response.success)
{
"success": true
}
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.events.emit(
name="name",
)
print(response.success)
{
"success": true
}
A unique identifier for the event. If the same event is sent with the same idempotency key, the event will be ignored.
Default Response
The response is of type object
.