Skip to content

Instantly share code, notes, and snippets.

@meirabruno
Last active October 25, 2022 17:51
Show Gist options
  • Select an option

  • Save meirabruno/ca016a8f82a3d03016d83a4f1786c36c to your computer and use it in GitHub Desktop.

Select an option

Save meirabruno/ca016a8f82a3d03016d83a4f1786c36c to your computer and use it in GitHub Desktop.
javascript feedsnag
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