Send Custom Activity
curl --request POST \
--url https://api.basement.fun/launcher/send-custom-activity \
--header 'Content-Type: application/json' \
--data '
{
"launcherJwt": "<string>",
"label": "<string>",
"eventId": "<string>"
}
'import requests
url = "https://api.basement.fun/launcher/send-custom-activity"
payload = {
"launcherJwt": "<string>",
"label": "<string>",
"eventId": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({launcherJwt: '<string>', label: '<string>', eventId: '<string>'})
};
fetch('https://api.basement.fun/launcher/send-custom-activity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.basement.fun/launcher/send-custom-activity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'launcherJwt' => '<string>',
'label' => '<string>',
'eventId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.basement.fun/launcher/send-custom-activity"
payload := strings.NewReader("{\n \"launcherJwt\": \"<string>\",\n \"label\": \"<string>\",\n \"eventId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.basement.fun/launcher/send-custom-activity")
.header("Content-Type", "application/json")
.body("{\n \"launcherJwt\": \"<string>\",\n \"label\": \"<string>\",\n \"eventId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.basement.fun/launcher/send-custom-activity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"launcherJwt\": \"<string>\",\n \"label\": \"<string>\",\n \"eventId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"activity": {
"_id": "<string>",
"label": "<string>",
"normalizedAddress": "<string>",
"timestamp": 123,
"eventId": "<string>",
"gameId": "<string>"
}
}{
"name": "<string>",
"message": "<string>",
"code": 123,
"className": "<string>",
"data": {
"success": true,
"error": "<string>"
}
}{
"name": "<string>",
"message": "<string>",
"code": 123,
"className": "<string>",
"data": {
"success": true,
"error": "<string>"
}
}API Reference
Send Custom Activity
Send a custom activity event for the user
POST
/
launcher
/
send-custom-activity
Send Custom Activity
curl --request POST \
--url https://api.basement.fun/launcher/send-custom-activity \
--header 'Content-Type: application/json' \
--data '
{
"launcherJwt": "<string>",
"label": "<string>",
"eventId": "<string>"
}
'import requests
url = "https://api.basement.fun/launcher/send-custom-activity"
payload = {
"launcherJwt": "<string>",
"label": "<string>",
"eventId": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({launcherJwt: '<string>', label: '<string>', eventId: '<string>'})
};
fetch('https://api.basement.fun/launcher/send-custom-activity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.basement.fun/launcher/send-custom-activity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'launcherJwt' => '<string>',
'label' => '<string>',
'eventId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.basement.fun/launcher/send-custom-activity"
payload := strings.NewReader("{\n \"launcherJwt\": \"<string>\",\n \"label\": \"<string>\",\n \"eventId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.basement.fun/launcher/send-custom-activity")
.header("Content-Type", "application/json")
.body("{\n \"launcherJwt\": \"<string>\",\n \"label\": \"<string>\",\n \"eventId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.basement.fun/launcher/send-custom-activity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"launcherJwt\": \"<string>\",\n \"label\": \"<string>\",\n \"eventId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"activity": {
"_id": "<string>",
"label": "<string>",
"normalizedAddress": "<string>",
"timestamp": 123,
"eventId": "<string>",
"gameId": "<string>"
}
}{
"name": "<string>",
"message": "<string>",
"code": 123,
"className": "<string>",
"data": {
"success": true,
"error": "<string>"
}
}{
"name": "<string>",
"message": "<string>",
"code": 123,
"className": "<string>",
"data": {
"success": true,
"error": "<string>"
}
}Headers
Random string identifier for request (for signature verification)
MD5 hash for request verification
Body
application/json
HypeDuel