Saltar al contenido principal

Obtener un evento específico

GET 

https://sandbox.soyio.id/api/v1/events/:id

Obtiene los detalles de un evento existente.

Request

Responses

Evento encontrado
require "uri"
require "net/http"

url = URI("https://sandbox.soyio.id/api/v1/events/:id")

https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Accept"] = "application/json"

response = https.request(request)
puts response.read_body
Request Collapse all
Base URL
https://sandbox.soyio.id/api/v1
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!