pip install git+https://github.com/epilot-dev/sdk-python.git#subdirectory=journey_config
import epilot
from epilot.models import operations, shared
s = epilot.Epilot(
security=shared.Security(
epilot_auth="Bearer YOUR_BEARER_TOKEN_HERE",
),
)
req = {
"deserunt": "porro",
"nulla": "id",
"vero": "perspiciatis",
}
res = s.journeys.create_journey(req)
if res.journey_response is not None:
# handle response
create_journey
- createJourney
get_journey
- getJourney
get_journeys_by_org_id
- getJourneysByOrgId
patch_update_journey
- patchUpdateJourney
remove_journey
- removeJourney
search_journeys
- searchJourneys
update_journey
- updateJourney