GET /widgets/[api_key] - Retrieve a Brand

GET /widgets/[api_key] - Retrieve a Brand

Ultimo aggiornamento: lunedì, ott 28, 2019
https://xeno.app/rest/v2/widgets/[api_key]


Headers

Authorization: Bearer TOKEN

Example Request

require "uri"
require "net/http"
url = URI("https://xeno.app/rest/v2/widgets/[api_key]")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = "Bearer TOKEN"

response = https.request(request)
puts response.read_body

REST API - Brands

5 articolo in questa categoria.