getEventDetails

@GET(value = "discovery/v2/events/{domain}/{id}")
abstract suspend fun getEventDetails(@Path(value = "domain") domain: String?, @Path(value = "id") id: String?, @QueryMap queryParams: Map<String, String>): Response<DiscoveryEventDetailsResponse?>

Fetches details for a specific event by domain and ID.

Queries the API for event details using domain, ID, and parameters.

Return

A Response with a DiscoveryEventDetailsResponse or null.

Parameters

domain

The domain for the event, if available.

id

The event ID, if available.

queryParams

Query parameters for the request.