Ticketmaster.Discovery 3.0.1

dotnet add package Ticketmaster.Discovery --version 3.0.1
NuGet\Install-Package Ticketmaster.Discovery -Version 3.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ticketmaster.Discovery" Version="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ticketmaster.Discovery --version 3.0.1
#r "nuget: Ticketmaster.Discovery, 3.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Ticketmaster.Discovery as a Cake Addin
#addin nuget:?package=Ticketmaster.Discovery&version=3.0.1

// Install Ticketmaster.Discovery as a Cake Tool
#tool nuget:?package=Ticketmaster.Discovery&version=3.0.1

Ticketmaster Open API Wrapper for .NET

GitHub license

Code & Opinions expressed in this repository are solely my own and do not express the views or opinions of my employer. This code is not supported by any employer as well as not profitable and do not bring any financial benefits. All work that was done during its creation was conducted in my spare/personal time and based only on my willingness to help the open-source community.

About

The Ticketmaster Open API Wrapper contains projects with the implementation of easy access to API endpoints. For more detailed information about the API and to get your API key head <a href="http://developer.ticketmaster.com/">here</a>. This Open API Wrapper supports Discovery <a href="http://developer.ticketmaster.com/products-and-docs/apis/discovery/v2/">v2</a>.

Important

Hi everyone, please, left a feedback about this project or about components. It will help me to improve this library. You can do this in any way you like:

  • Send me email.
  • Write to me in Skype.
  • Contact me in Linkedin.

Details you can find in 'Authors' section below.

Usage

Installetion

NuGet

You can install the last stable version of Ticketmaster.Discovery SDK using nuget. For more details about package please visit this.

PM> Install-Package Ticketmaster.Discovery

Simple usage of <code>EventsClient</code>

  var api = new DiscoveryApi("YOUR CLIENT API KEY");

  var searchRequest = new SearchEventsRequest().AddQueryParameter("size", 1);
  var searchResponse = await api.Events.Search(searchRequest);

  var getResponse = await api.Events.GetDetails(new GetRequest("Event Id"));
  var getImagesResponse = await api.Events.GetImages(new GetRequest("Event Id"));

The requests classes and BaseQuery class.

The <a href="http://developer.ticketmaster.com/products-and-docs/apis/discovery/v2/">Discovery API</a> can accept query parameters for different endpoints. To allow pass this query parameters was created <code>BaseQuery</code> which have <code>QueryParameters</code> property. *

For adding this parameters you just need create new instance of IDiscoveryApiRequest, IDiscoveryApiGetRequest interface. In this solution we have implementations for this interfaces. The <code>SearchAttractionsRequest</code>, <code>SearchClassificationsRequest</code>, <code>SearchEventsRequest</code>, <code>SearchVenuesRequest</code> classes. Use method <code> AddQueryParameter </code> to add query properties, the rules described in Method description for Api. The Example for <a href="http://developer.ticketmaster.com/products-and-docs/apis/discovery/v2/#srch-events-v2">Search Events</a> method is:

Authors

  • Serhii Voznyi - Initial work
    • LinkedIn
    • <a href="mailto:serhiivoznyi@gmail.com?Subject=TicketmasterSDK" target="_top">serhiivoznyi@gmail.com</a>
    • Skype: serhiivoznyi

See also the list of contributors who participated in this project.

Our Team

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1 83 3/23/2024
3.0.0 283 6/5/2023
2.0.5 4,328 6/6/2021
2.0.4 2,671 5/11/2020
2.0.3 482 5/11/2020
2.0.2 12,154 6/22/2019
2.0.1 672 12/23/2018
2.0.0 934 7/16/2018
1.0.2 886 3/18/2018
1.0.1 1,157 1/23/2018

3.0.0
WARNING! Were introduced breaking changes!
* Updated Packages.
* Removed legacy methods.
* Removed Ticketmaster.Core package dependency.
* Global refactoring.
3.0.1
* Added Attractions to the Embedded data for Events Search method.
* Added Attractions to the Links.