Execute the BAA via type-the-name e-sign
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/compliance/baa/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"signer_name": "Jane Roe",
"signer_email": "jane@example.com",
"typed_attestation": "Jane Roe"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/baa/execute"
payload = {
"signer_name": "Jane Roe",
"signer_email": "jane@example.com",
"typed_attestation": "Jane Roe"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
signer_name: 'Jane Roe',
signer_email: 'jane@example.com',
typed_attestation: 'Jane Roe'
})
};
fetch('https://api.orbit.devotel.io/api/v1/compliance/baa/execute', 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.orbit.devotel.io/api/v1/compliance/baa/execute",
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([
'signer_name' => 'Jane Roe',
'signer_email' => 'jane@example.com',
'typed_attestation' => 'Jane Roe'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.orbit.devotel.io/api/v1/compliance/baa/execute"
payload := strings.NewReader("{\n \"signer_name\": \"Jane Roe\",\n \"signer_email\": \"jane@example.com\",\n \"typed_attestation\": \"Jane Roe\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.orbit.devotel.io/api/v1/compliance/baa/execute")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"signer_name\": \"Jane Roe\",\n \"signer_email\": \"jane@example.com\",\n \"typed_attestation\": \"Jane Roe\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/baa/execute")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"signer_name\": \"Jane Roe\",\n \"signer_email\": \"jane@example.com\",\n \"typed_attestation\": \"Jane Roe\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"baa_status": "executed",
"baa_id": "baa_01hxyz",
"baa_executed_at": "2026-08-03T12:34:56.000Z",
"baa_template_version": "v1",
"baa_signer_name": "Jane Roe",
"baa_signer_email": "jane@example.com",
"hipaa_required": true,
"expires_at": "2027-08-03T12:34:56.000Z",
"days_until_expiry": 365
},
"meta": {
"request_id": "req_9s8d7f6g5h4j",
"timestamp": "2026-08-03T12:34:56.000Z"
}
}Compliance
Execute the BAA via type-the-name e-sign
Executes the HIPAA Business Associate Agreement through a type-the-name click-wrap e-signature. The typed_attestation must exactly match signer_name. On success the rendered agreement PDF is stored, the org is stamped executed with the signer / version / date, and a compliance.baa.executed audit-chain row is written as the legal evidence of attestation. Owner only. Executing the BAA does not by itself enable HIPAA mode.
POST
/
api
/
v1
/
compliance
/
baa
/
execute
Execute the BAA via type-the-name e-sign
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/compliance/baa/execute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"signer_name": "Jane Roe",
"signer_email": "jane@example.com",
"typed_attestation": "Jane Roe"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/baa/execute"
payload = {
"signer_name": "Jane Roe",
"signer_email": "jane@example.com",
"typed_attestation": "Jane Roe"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
signer_name: 'Jane Roe',
signer_email: 'jane@example.com',
typed_attestation: 'Jane Roe'
})
};
fetch('https://api.orbit.devotel.io/api/v1/compliance/baa/execute', 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.orbit.devotel.io/api/v1/compliance/baa/execute",
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([
'signer_name' => 'Jane Roe',
'signer_email' => 'jane@example.com',
'typed_attestation' => 'Jane Roe'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.orbit.devotel.io/api/v1/compliance/baa/execute"
payload := strings.NewReader("{\n \"signer_name\": \"Jane Roe\",\n \"signer_email\": \"jane@example.com\",\n \"typed_attestation\": \"Jane Roe\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.orbit.devotel.io/api/v1/compliance/baa/execute")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"signer_name\": \"Jane Roe\",\n \"signer_email\": \"jane@example.com\",\n \"typed_attestation\": \"Jane Roe\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/baa/execute")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"signer_name\": \"Jane Roe\",\n \"signer_email\": \"jane@example.com\",\n \"typed_attestation\": \"Jane Roe\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"baa_status": "executed",
"baa_id": "baa_01hxyz",
"baa_executed_at": "2026-08-03T12:34:56.000Z",
"baa_template_version": "v1",
"baa_signer_name": "Jane Roe",
"baa_signer_email": "jane@example.com",
"hipaa_required": true,
"expires_at": "2027-08-03T12:34:56.000Z",
"days_until_expiry": 365
},
"meta": {
"request_id": "req_9s8d7f6g5h4j",
"timestamp": "2026-08-03T12:34:56.000Z"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Body
application/json
Legal name of the signer.
Required string length:
2 - 200Email address of the signer.
Maximum string length:
320The name the signer typed to attest; must exactly match signer_name.
Required string length:
2 - 200Optional template version to execute. Defaults to the current canonical version.
Required string length:
1 - 20⌘I