Module: LockstepSdk::Client::Leads

Defined in:
lib/clients/Leads.rb

Instance Method Summary collapse

Instance Method Details

#create_leadsObject

Creates one or more Leads within the Lockstep platform and returns the records as created.

A Lead is a person who is interested in the Lockstep platform but needs certain new features in order to use it. If you are interested in the Lockstep platform, you can create a lead with your information and our team will prioritize the feature you need.
@param body [LeadModel] The Leads to create


24
25
26
27
# File 'lib/clients/Leads.rb', line 24

def create_leads()
    path = "/api/v1/Leads"
    send_request(:post, path, body, nil)
end