Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.22 KB

File metadata and controls

53 lines (35 loc) · 1.22 KB

EventAPI

All URIs are relative to https://finchapp.eastus.cloudapp.azure.com/api

Method HTTP request Description
getEventExamples GET /event/examples Get example events

getEventExamples

    open class func getEventExamples(completion: @escaping (_ data: [Event]?, _ error: Error?) -> Void)

Get example events

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient


// Get example events
EventAPI.getEventExamples() { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

This endpoint does not need any parameter.

Return type

[Event]

Authorization

sidCookie

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]