Skip to content

Instantly share code, notes, and snippets.

@meirabruno
Created October 25, 2022 17:59
Show Gist options
  • Save meirabruno/139054aee726e469677520277d5d801a to your computer and use it in GitHub Desktop.
Save meirabruno/139054aee726e469677520277d5d801a to your computer and use it in GitHub Desktop.
require 'httparty'
headers = {
'cache-control': 'no-cache',
'content-type': 'application/json',
'authorization': 'Bearer TOKEN'
}
HTTParty.post(
'https://feedsnag.com/api/v1/event',
headers: headers,
body: {
"project": "plataforma-ead",
"channel": "fluxo-do-usuario",
"title": "Nova Assinatura",
"description": "email: [email protected], Plano Básico R$ 29,90",
"icon": "💸"
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment