Created
October 25, 2022 17:59
-
-
Save meirabruno/139054aee726e469677520277d5d801a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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