Create a brand activation
curl --request POST \
--url https://api.bambumeta.software/brands/{brand_id}/brand-activations \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"externalIdentifier": "signup-spring-2026",
"person": {
"firstName": "Alex",
"lastName": "Member",
"email": "member@example.com",
"phone": "+15551234567"
}
}
'import requests
url = "https://api.bambumeta.software/brands/{brand_id}/brand-activations"
payload = {
"externalIdentifier": "signup-spring-2026",
"person": {
"firstName": "Alex",
"lastName": "Member",
"email": "member@example.com",
"phone": "+15551234567"
}
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
externalIdentifier: 'signup-spring-2026',
person: {
firstName: 'Alex',
lastName: 'Member',
email: 'member@example.com',
phone: '+15551234567'
}
})
};
fetch('https://api.bambumeta.software/brands/{brand_id}/brand-activations', 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.bambumeta.software/brands/{brand_id}/brand-activations",
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([
'externalIdentifier' => 'signup-spring-2026',
'person' => [
'firstName' => 'Alex',
'lastName' => 'Member',
'email' => 'member@example.com',
'phone' => '+15551234567'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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.bambumeta.software/brands/{brand_id}/brand-activations"
payload := strings.NewReader("{\n \"externalIdentifier\": \"signup-spring-2026\",\n \"person\": {\n \"firstName\": \"Alex\",\n \"lastName\": \"Member\",\n \"email\": \"member@example.com\",\n \"phone\": \"+15551234567\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
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.bambumeta.software/brands/{brand_id}/brand-activations")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"externalIdentifier\": \"signup-spring-2026\",\n \"person\": {\n \"firstName\": \"Alex\",\n \"lastName\": \"Member\",\n \"email\": \"member@example.com\",\n \"phone\": \"+15551234567\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bambumeta.software/brands/{brand_id}/brand-activations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"externalIdentifier\": \"signup-spring-2026\",\n \"person\": {\n \"firstName\": \"Alex\",\n \"lastName\": \"Member\",\n \"email\": \"member@example.com\",\n \"phone\": \"+15551234567\"\n }\n}"
response = http.request(request)
puts response.read_body{
"brandActivationId": 10,
"externalIdentifier": "signup-spring-2026",
"brandId": 353,
"status": "ACTIVE"
}Brand activations
Create a brand activation
Creates a brand activation record for an onboarding or enrollment funnel. Returns an external identifier you can embed in landing pages or partner flows.
POST
/
{brand_id}
/
brand-activations
Create a brand activation
curl --request POST \
--url https://api.bambumeta.software/brands/{brand_id}/brand-activations \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"externalIdentifier": "signup-spring-2026",
"person": {
"firstName": "Alex",
"lastName": "Member",
"email": "member@example.com",
"phone": "+15551234567"
}
}
'import requests
url = "https://api.bambumeta.software/brands/{brand_id}/brand-activations"
payload = {
"externalIdentifier": "signup-spring-2026",
"person": {
"firstName": "Alex",
"lastName": "Member",
"email": "member@example.com",
"phone": "+15551234567"
}
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
externalIdentifier: 'signup-spring-2026',
person: {
firstName: 'Alex',
lastName: 'Member',
email: 'member@example.com',
phone: '+15551234567'
}
})
};
fetch('https://api.bambumeta.software/brands/{brand_id}/brand-activations', 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.bambumeta.software/brands/{brand_id}/brand-activations",
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([
'externalIdentifier' => 'signup-spring-2026',
'person' => [
'firstName' => 'Alex',
'lastName' => 'Member',
'email' => 'member@example.com',
'phone' => '+15551234567'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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.bambumeta.software/brands/{brand_id}/brand-activations"
payload := strings.NewReader("{\n \"externalIdentifier\": \"signup-spring-2026\",\n \"person\": {\n \"firstName\": \"Alex\",\n \"lastName\": \"Member\",\n \"email\": \"member@example.com\",\n \"phone\": \"+15551234567\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
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.bambumeta.software/brands/{brand_id}/brand-activations")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"externalIdentifier\": \"signup-spring-2026\",\n \"person\": {\n \"firstName\": \"Alex\",\n \"lastName\": \"Member\",\n \"email\": \"member@example.com\",\n \"phone\": \"+15551234567\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bambumeta.software/brands/{brand_id}/brand-activations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"externalIdentifier\": \"signup-spring-2026\",\n \"person\": {\n \"firstName\": \"Alex\",\n \"lastName\": \"Member\",\n \"email\": \"member@example.com\",\n \"phone\": \"+15551234567\"\n }\n}"
response = http.request(request)
puts response.read_body{
"brandActivationId": 10,
"externalIdentifier": "signup-spring-2026",
"brandId": 353,
"status": "ACTIVE"
}Authorizations
Path Parameters
Unique identifier for the brand
Body
application/json
Response
200 - application/json
OK
⌘I