Lypp Developer API Quick Start

1.) You have signed up and received your developer account information for our partner/developer environment.

2.) You have given our API documentation a good read.

3.) Your still not sure where to start?

The following example is about the steps to make your first call using the API so I will use curl to keep things language agnostic.

Confirm that your account information works and that your information is correctly entered.


curl \
-u username:password \
https://lypp.com/users/user_id.xml

Create your conference.


curl \
  -u username:password \
  -H 'Accept: application/xml' \
  -H 'Content-Type: application/xml' \
  -d '

        Development Team Meeting
        2008-08-24T20:19:34Z
      ' \
  -X POST \
  https://lypp.com/users/user_id/conferences

On that last curl call your conference will have been created and and you should now have the id of the conference ({conference_id} to reference when adding attendees. Lets take a look at the return for that call before we start adding our attendees.



  {conference_id}
  2008-04-23T22:18:56Z
  2008-04-23T22:18:57Z
  1
  pending
  2008-08-24T14:19:34-06:00

  false
  Development Team Meeting
  false
  false
  false

  0000000
  000000000

All the boolean values you see returned there are also optional arguments that can be passed in while creating the conference or changed after conference creation, including while a call in in-progress. Now all we need to do is add our other attendees to the call.


curl \
-u username:password \
-H 'Accept: application/xml' \
-H 'Content-Type: application/xml' \
-d '

Mom
555-555-5555
‘ \
-X POST \
https://lypp.com/users/user_id/conferences/conference_id/attendees

Mom likes to check in my Development meetings 🙂