-
-
Save InvisibleWater/32cea20605e00b2cf23ad35198b7c393 to your computer and use it in GitHub Desktop.
This file contains 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
local HttpService = game:GetService("HttpService") | |
local body = { | |
Url = "https://api.bugasura.io/issues/add", | |
Method = "POST", | |
Headers = { | |
Authorization = "<HEADER>" | |
}, | |
Body = string.format("team_id=%d&sprint_id=%d&summary=%s", team, sprint, summary) | |
} | |
print(body, HttpService:RequestAsync(body)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment