Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

journey_config

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

epilot-journey-config

SDK Installation

pip install git+https://github.com/epilot-dev/sdk-python.git#subdirectory=journey_config

SDK Example Usage

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

SDK Available Operations

journeys

  • 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

SDK Generated by Speakeasy