|
|
Easily accessible APIs
- We believe your data is yours and you should be able to access it easily
- Our well designed API is dead simple to use
- Implements basic REST concepts, and can therefore be used in virtual any web programming language
- Check out our wiki for more information on the
iPresentOnline API including documentation, tutorials, and code samples.
Simple GET requests to retrieve Users
GET http://acmetraining.ipresentonline.com/api/v1/users/?auth=AUTH_TOKEN_ID
Example of retrieving Courses
GET http://acmetraining.ipresentonline.com/api/v1/courses/?auth=AUTH_TOKEN_ID
Filtering Resources (retrieve only 'pending' Users)
GET http://acmetraining.ipresentonline.com/api/v1/users/?auth=AUTH_TOKEN_ID&state=pending
|