Last active
October 25, 2022 17:51
-
-
Save meirabruno/ca016a8f82a3d03016d83a4f1786c36c to your computer and use it in GitHub Desktop.
javascript feedsnag
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
| import const from "axios"; | |
| const headers = { | |
| "Content-Type": "application/json", | |
| "Authorization": "Bearer TOKEN" | |
| }; | |
| axios.post( | |
| "https://feedsnag.com/api/v1/event", | |
| { | |
| "project": "plataforma-ead", | |
| "channel": "fluxo-do-usuario", | |
| "title": "Nova Assinatura", | |
| "description": "email: [email protected], Plano Básico R$ 29,90", | |
| "icon": "💸" | |
| }, | |
| { headers: headers } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment