agent.provision
curl --request POST \
--url https://app.bizbionic.com/a2a/agent/provision \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 1,
"method": "agent.provision",
"params": {
"name": "Acme Corp",
"source": "docs",
"permissions": "full",
"use_case": "marketing",
"business_context": {
"vertical": "retail"
}
}
}
'import requests
url = "https://app.bizbionic.com/a2a/agent/provision"
payload = {
"jsonrpc": "2.0",
"id": 1,
"method": "agent.provision",
"params": {
"name": "Acme Corp",
"source": "docs",
"permissions": "full",
"use_case": "marketing",
"business_context": { "vertical": "retail" }
}
}
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({
jsonrpc: '2.0',
id: 1,
method: 'agent.provision',
params: {
name: 'Acme Corp',
source: 'docs',
permissions: 'full',
use_case: 'marketing',
business_context: {vertical: 'retail'}
}
})
};
fetch('https://app.bizbionic.com/a2a/agent/provision', 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://app.bizbionic.com/a2a/agent/provision",
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([
'jsonrpc' => '2.0',
'id' => 1,
'method' => 'agent.provision',
'params' => [
'name' => 'Acme Corp',
'source' => 'docs',
'permissions' => 'full',
'use_case' => 'marketing',
'business_context' => [
'vertical' => 'retail'
]
]
]),
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://app.bizbionic.com/a2a/agent/provision"
payload := strings.NewReader("{\n \"jsonrpc\": \"2.0\",\n \"id\": 1,\n \"method\": \"agent.provision\",\n \"params\": {\n \"name\": \"Acme Corp\",\n \"source\": \"docs\",\n \"permissions\": \"full\",\n \"use_case\": \"marketing\",\n \"business_context\": {\n \"vertical\": \"retail\"\n }\n }\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://app.bizbionic.com/a2a/agent/provision")
.header("Content-Type", "application/json")
.body("{\n \"jsonrpc\": \"2.0\",\n \"id\": 1,\n \"method\": \"agent.provision\",\n \"params\": {\n \"name\": \"Acme Corp\",\n \"source\": \"docs\",\n \"permissions\": \"full\",\n \"use_case\": \"marketing\",\n \"business_context\": {\n \"vertical\": \"retail\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.bizbionic.com/a2a/agent/provision")
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 \"jsonrpc\": \"2.0\",\n \"id\": 1,\n \"method\": \"agent.provision\",\n \"params\": {\n \"name\": \"Acme Corp\",\n \"source\": \"docs\",\n \"permissions\": \"full\",\n \"use_case\": \"marketing\",\n \"business_context\": {\n \"vertical\": \"retail\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"jsonrpc": "2.0",
"id": "<unknown>",
"result": "<unknown>"
}{
"jsonrpc": "<string>",
"id": "<unknown>",
"error": {
"code": 123,
"message": "<string>",
"data": {}
}
}agent
agent.provision
Create a tenant and one-time API key (agent-native signup).
Wire format (production): Always call POST /rpc with a JSON-RPC 2.0 body. The path /a2a/agent.provision is documentation-only so each skill appears in the API Reference.
{
"jsonrpc": "2.0",
"id": 1,
"method": "agent.provision",
"params": {
"name": "Acme Corp",
"source": "docs",
"permissions": "full",
"use_case": "marketing",
"business_context": {
"vertical": "retail"
}
}
}
Auth scope: anonymous_or_special
API key is shown once. Store securely.
agent.provision
curl --request POST \
--url https://app.bizbionic.com/a2a/agent/provision \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": 1,
"method": "agent.provision",
"params": {
"name": "Acme Corp",
"source": "docs",
"permissions": "full",
"use_case": "marketing",
"business_context": {
"vertical": "retail"
}
}
}
'import requests
url = "https://app.bizbionic.com/a2a/agent/provision"
payload = {
"jsonrpc": "2.0",
"id": 1,
"method": "agent.provision",
"params": {
"name": "Acme Corp",
"source": "docs",
"permissions": "full",
"use_case": "marketing",
"business_context": { "vertical": "retail" }
}
}
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({
jsonrpc: '2.0',
id: 1,
method: 'agent.provision',
params: {
name: 'Acme Corp',
source: 'docs',
permissions: 'full',
use_case: 'marketing',
business_context: {vertical: 'retail'}
}
})
};
fetch('https://app.bizbionic.com/a2a/agent/provision', 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://app.bizbionic.com/a2a/agent/provision",
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([
'jsonrpc' => '2.0',
'id' => 1,
'method' => 'agent.provision',
'params' => [
'name' => 'Acme Corp',
'source' => 'docs',
'permissions' => 'full',
'use_case' => 'marketing',
'business_context' => [
'vertical' => 'retail'
]
]
]),
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://app.bizbionic.com/a2a/agent/provision"
payload := strings.NewReader("{\n \"jsonrpc\": \"2.0\",\n \"id\": 1,\n \"method\": \"agent.provision\",\n \"params\": {\n \"name\": \"Acme Corp\",\n \"source\": \"docs\",\n \"permissions\": \"full\",\n \"use_case\": \"marketing\",\n \"business_context\": {\n \"vertical\": \"retail\"\n }\n }\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://app.bizbionic.com/a2a/agent/provision")
.header("Content-Type", "application/json")
.body("{\n \"jsonrpc\": \"2.0\",\n \"id\": 1,\n \"method\": \"agent.provision\",\n \"params\": {\n \"name\": \"Acme Corp\",\n \"source\": \"docs\",\n \"permissions\": \"full\",\n \"use_case\": \"marketing\",\n \"business_context\": {\n \"vertical\": \"retail\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.bizbionic.com/a2a/agent/provision")
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 \"jsonrpc\": \"2.0\",\n \"id\": 1,\n \"method\": \"agent.provision\",\n \"params\": {\n \"name\": \"Acme Corp\",\n \"source\": \"docs\",\n \"permissions\": \"full\",\n \"use_case\": \"marketing\",\n \"business_context\": {\n \"vertical\": \"retail\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"jsonrpc": "2.0",
"id": "<unknown>",
"result": "<unknown>"
}{
"jsonrpc": "<string>",
"id": "<unknown>",
"error": {
"code": 123,
"message": "<string>",
"data": {}
}
}⌘I