All URIs are relative to https://airlines-api.hopper.com/airline/v1.1
Method | HTTP request | Description |
---|---|---|
PostSessions | POST /sessions | Create a Session |
AirlineSession PostSessions (CreateAirlineSessionRequest createAirlineSessionRequest)
Create a Session
Create a new session for which events will be collected.
using System.Collections.Generic;
using System.Diagnostics;
using Com.Hopper.Hts.Airlines.Api;
using Com.Hopper.Hts.Airlines.Client;
using Com.Hopper.Hts.Airlines.Model;
namespace Example
{
public class PostSessionsExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://airlines-api.hopper.com/airline/v1.1";
// Configure Bearer token for authorization: PartnerAuth
config.AccessToken = "YOUR_BEARER_TOKEN";
var apiInstance = new SessionsApi(config);
var createAirlineSessionRequest = new CreateAirlineSessionRequest(); // CreateAirlineSessionRequest |
try
{
// Create a Session
AirlineSession result = apiInstance.PostSessions(createAirlineSessionRequest);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SessionsApi.PostSessions: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
This returns an ApiResponse object which contains the response data, status code and headers.
try
{
// Create a Session
ApiResponse<AirlineSession> response = apiInstance.PostSessionsWithHttpInfo(createAirlineSessionRequest);
Debug.Write("Status Code: " + response.StatusCode);
Debug.Write("Response Headers: " + response.Headers);
Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SessionsApi.PostSessionsWithHttpInfo: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}
Name | Type | Description | Notes |
---|---|---|---|
createAirlineSessionRequest | CreateAirlineSessionRequest |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | The created airline session | * Expires - * Cache-Control - |
204 | The airline session creation request was not performed | * Expires - * Cache-Control - |
400 | Syntactic errors were encountered while handling the request | - |
401 | The client could not be authenticated | - |
403 | The authenticated client does not have permission to call this endpoint | - |
404 | The requested resource could not be found | - |
422 | Semantic errors were encountered while handling the request | - |
500 | The server encountered an internal error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]