module Markety
To use Markety
, the first thing you need to do is call
Markety.new_client(...)
to create a Markety::Client
object. It is through methods on this object that you will send requests to Marketo.
The request methods are defined and documented in the Markety::Command
modules, which are all include
d and accessible from Markety::Client
.
Every Markety
request method returns a Markety::Response
of some sort. All responses derive from Markety::Response::GenericResponse
, which exposes basic information about the request's success or failure. The information you really want is in the appropriate subclass, e.g.
-
Markety::Command::GetLead
returnsMarkety::Response::GetLeadResponse
-
Markety::Command::ListOperation
returnsMarkety::Response::ListOperationResponse
… and so on
Constants
- VERSION