curl --request PUT \
--url https://api.smokeball.com/firm \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"productId": "SMK001",
"addOnIds": [
"ADD01",
"ADD003"
],
"name": "Brown LLC",
"email": "john.smith@law.com",
"abn": "1234567890",
"acn": "1234567890",
"streetAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"mailingAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"dxAddress": {
"number": "376",
"exchange": "DX",
"state": "NSW"
},
"phone": {
"areaCode": "555",
"number": "1234567"
},
"fax": {
"areaCode": "555",
"number": "1234567"
},
"status": {
"status": "Active",
"statusMessage": "<string>"
}
}
'import requests
url = "https://api.smokeball.com/firm"
payload = {
"productId": "SMK001",
"addOnIds": ["ADD01", "ADD003"],
"name": "Brown LLC",
"email": "john.smith@law.com",
"abn": "1234567890",
"acn": "1234567890",
"streetAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"mailingAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"dxAddress": {
"number": "376",
"exchange": "DX",
"state": "NSW"
},
"phone": {
"areaCode": "555",
"number": "1234567"
},
"fax": {
"areaCode": "555",
"number": "1234567"
},
"status": {
"status": "Active",
"statusMessage": "<string>"
}
}
headers = {
"x-api-key": "<api-key>",
"Authorization": "<api-key>",
"Content-Type": "application/json-patch+json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'x-api-key': '<api-key>',
Authorization: '<api-key>',
'Content-Type': 'application/json-patch+json'
},
body: JSON.stringify({
productId: 'SMK001',
addOnIds: ['ADD01', 'ADD003'],
name: 'Brown LLC',
email: 'john.smith@law.com',
abn: '1234567890',
acn: '1234567890',
streetAddress: {
buildingLevel: 'Level 1',
unitNumber: '10',
unitType: 'Suite',
streetNumber: '100',
streetName: 'Broad',
streetType: 'Street',
addressLine1: 'Level 1/10',
addressLine2: '100 Broad Street',
city: 'Chicago',
state: 'IL',
zipCode: '60606',
county: '',
locality: '',
country: 'United States',
careOf: '',
poBoxType: '',
poBoxNumber: ''
},
mailingAddress: {
buildingLevel: 'Level 1',
unitNumber: '10',
unitType: 'Suite',
streetNumber: '100',
streetName: 'Broad',
streetType: 'Street',
addressLine1: 'Level 1/10',
addressLine2: '100 Broad Street',
city: 'Chicago',
state: 'IL',
zipCode: '60606',
county: '',
locality: '',
country: 'United States',
careOf: '',
poBoxType: '',
poBoxNumber: ''
},
dxAddress: {number: '376', exchange: 'DX', state: 'NSW'},
phone: {areaCode: '555', number: '1234567'},
fax: {areaCode: '555', number: '1234567'},
status: {status: 'Active', statusMessage: '<string>'}
})
};
fetch('https://api.smokeball.com/firm', 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.smokeball.com/firm",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'productId' => 'SMK001',
'addOnIds' => [
'ADD01',
'ADD003'
],
'name' => 'Brown LLC',
'email' => 'john.smith@law.com',
'abn' => '1234567890',
'acn' => '1234567890',
'streetAddress' => [
'buildingLevel' => 'Level 1',
'unitNumber' => '10',
'unitType' => 'Suite',
'streetNumber' => '100',
'streetName' => 'Broad',
'streetType' => 'Street',
'addressLine1' => 'Level 1/10',
'addressLine2' => '100 Broad Street',
'city' => 'Chicago',
'state' => 'IL',
'zipCode' => '60606',
'county' => '',
'locality' => '',
'country' => 'United States',
'careOf' => '',
'poBoxType' => '',
'poBoxNumber' => ''
],
'mailingAddress' => [
'buildingLevel' => 'Level 1',
'unitNumber' => '10',
'unitType' => 'Suite',
'streetNumber' => '100',
'streetName' => 'Broad',
'streetType' => 'Street',
'addressLine1' => 'Level 1/10',
'addressLine2' => '100 Broad Street',
'city' => 'Chicago',
'state' => 'IL',
'zipCode' => '60606',
'county' => '',
'locality' => '',
'country' => 'United States',
'careOf' => '',
'poBoxType' => '',
'poBoxNumber' => ''
],
'dxAddress' => [
'number' => '376',
'exchange' => 'DX',
'state' => 'NSW'
],
'phone' => [
'areaCode' => '555',
'number' => '1234567'
],
'fax' => [
'areaCode' => '555',
'number' => '1234567'
],
'status' => [
'status' => 'Active',
'statusMessage' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json-patch+json",
"x-api-key: <api-key>"
],
]);
$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.smokeball.com/firm"
payload := strings.NewReader("{\n \"productId\": \"SMK001\",\n \"addOnIds\": [\n \"ADD01\",\n \"ADD003\"\n ],\n \"name\": \"Brown LLC\",\n \"email\": \"john.smith@law.com\",\n \"abn\": \"1234567890\",\n \"acn\": \"1234567890\",\n \"streetAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"mailingAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"dxAddress\": {\n \"number\": \"376\",\n \"exchange\": \"DX\",\n \"state\": \"NSW\"\n },\n \"phone\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"fax\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"status\": {\n \"status\": \"Active\",\n \"statusMessage\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json-patch+json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.smokeball.com/firm")
.header("x-api-key", "<api-key>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json-patch+json")
.body("{\n \"productId\": \"SMK001\",\n \"addOnIds\": [\n \"ADD01\",\n \"ADD003\"\n ],\n \"name\": \"Brown LLC\",\n \"email\": \"john.smith@law.com\",\n \"abn\": \"1234567890\",\n \"acn\": \"1234567890\",\n \"streetAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"mailingAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"dxAddress\": {\n \"number\": \"376\",\n \"exchange\": \"DX\",\n \"state\": \"NSW\"\n },\n \"phone\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"fax\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"status\": {\n \"status\": \"Active\",\n \"statusMessage\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.smokeball.com/firm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json-patch+json'
request.body = "{\n \"productId\": \"SMK001\",\n \"addOnIds\": [\n \"ADD01\",\n \"ADD003\"\n ],\n \"name\": \"Brown LLC\",\n \"email\": \"john.smith@law.com\",\n \"abn\": \"1234567890\",\n \"acn\": \"1234567890\",\n \"streetAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"mailingAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"dxAddress\": {\n \"number\": \"376\",\n \"exchange\": \"DX\",\n \"state\": \"NSW\"\n },\n \"phone\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"fax\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"status\": {\n \"status\": \"Active\",\n \"statusMessage\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Update firm
Updates firm details for the current authenticated client.
curl --request PUT \
--url https://api.smokeball.com/firm \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"productId": "SMK001",
"addOnIds": [
"ADD01",
"ADD003"
],
"name": "Brown LLC",
"email": "john.smith@law.com",
"abn": "1234567890",
"acn": "1234567890",
"streetAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"mailingAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"dxAddress": {
"number": "376",
"exchange": "DX",
"state": "NSW"
},
"phone": {
"areaCode": "555",
"number": "1234567"
},
"fax": {
"areaCode": "555",
"number": "1234567"
},
"status": {
"status": "Active",
"statusMessage": "<string>"
}
}
'import requests
url = "https://api.smokeball.com/firm"
payload = {
"productId": "SMK001",
"addOnIds": ["ADD01", "ADD003"],
"name": "Brown LLC",
"email": "john.smith@law.com",
"abn": "1234567890",
"acn": "1234567890",
"streetAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"mailingAddress": {
"buildingLevel": "Level 1",
"unitNumber": "10",
"unitType": "Suite",
"streetNumber": "100",
"streetName": "Broad",
"streetType": "Street",
"addressLine1": "Level 1/10",
"addressLine2": "100 Broad Street",
"city": "Chicago",
"state": "IL",
"zipCode": "60606",
"county": "",
"locality": "",
"country": "United States",
"careOf": "",
"poBoxType": "",
"poBoxNumber": ""
},
"dxAddress": {
"number": "376",
"exchange": "DX",
"state": "NSW"
},
"phone": {
"areaCode": "555",
"number": "1234567"
},
"fax": {
"areaCode": "555",
"number": "1234567"
},
"status": {
"status": "Active",
"statusMessage": "<string>"
}
}
headers = {
"x-api-key": "<api-key>",
"Authorization": "<api-key>",
"Content-Type": "application/json-patch+json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'x-api-key': '<api-key>',
Authorization: '<api-key>',
'Content-Type': 'application/json-patch+json'
},
body: JSON.stringify({
productId: 'SMK001',
addOnIds: ['ADD01', 'ADD003'],
name: 'Brown LLC',
email: 'john.smith@law.com',
abn: '1234567890',
acn: '1234567890',
streetAddress: {
buildingLevel: 'Level 1',
unitNumber: '10',
unitType: 'Suite',
streetNumber: '100',
streetName: 'Broad',
streetType: 'Street',
addressLine1: 'Level 1/10',
addressLine2: '100 Broad Street',
city: 'Chicago',
state: 'IL',
zipCode: '60606',
county: '',
locality: '',
country: 'United States',
careOf: '',
poBoxType: '',
poBoxNumber: ''
},
mailingAddress: {
buildingLevel: 'Level 1',
unitNumber: '10',
unitType: 'Suite',
streetNumber: '100',
streetName: 'Broad',
streetType: 'Street',
addressLine1: 'Level 1/10',
addressLine2: '100 Broad Street',
city: 'Chicago',
state: 'IL',
zipCode: '60606',
county: '',
locality: '',
country: 'United States',
careOf: '',
poBoxType: '',
poBoxNumber: ''
},
dxAddress: {number: '376', exchange: 'DX', state: 'NSW'},
phone: {areaCode: '555', number: '1234567'},
fax: {areaCode: '555', number: '1234567'},
status: {status: 'Active', statusMessage: '<string>'}
})
};
fetch('https://api.smokeball.com/firm', 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.smokeball.com/firm",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'productId' => 'SMK001',
'addOnIds' => [
'ADD01',
'ADD003'
],
'name' => 'Brown LLC',
'email' => 'john.smith@law.com',
'abn' => '1234567890',
'acn' => '1234567890',
'streetAddress' => [
'buildingLevel' => 'Level 1',
'unitNumber' => '10',
'unitType' => 'Suite',
'streetNumber' => '100',
'streetName' => 'Broad',
'streetType' => 'Street',
'addressLine1' => 'Level 1/10',
'addressLine2' => '100 Broad Street',
'city' => 'Chicago',
'state' => 'IL',
'zipCode' => '60606',
'county' => '',
'locality' => '',
'country' => 'United States',
'careOf' => '',
'poBoxType' => '',
'poBoxNumber' => ''
],
'mailingAddress' => [
'buildingLevel' => 'Level 1',
'unitNumber' => '10',
'unitType' => 'Suite',
'streetNumber' => '100',
'streetName' => 'Broad',
'streetType' => 'Street',
'addressLine1' => 'Level 1/10',
'addressLine2' => '100 Broad Street',
'city' => 'Chicago',
'state' => 'IL',
'zipCode' => '60606',
'county' => '',
'locality' => '',
'country' => 'United States',
'careOf' => '',
'poBoxType' => '',
'poBoxNumber' => ''
],
'dxAddress' => [
'number' => '376',
'exchange' => 'DX',
'state' => 'NSW'
],
'phone' => [
'areaCode' => '555',
'number' => '1234567'
],
'fax' => [
'areaCode' => '555',
'number' => '1234567'
],
'status' => [
'status' => 'Active',
'statusMessage' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json-patch+json",
"x-api-key: <api-key>"
],
]);
$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.smokeball.com/firm"
payload := strings.NewReader("{\n \"productId\": \"SMK001\",\n \"addOnIds\": [\n \"ADD01\",\n \"ADD003\"\n ],\n \"name\": \"Brown LLC\",\n \"email\": \"john.smith@law.com\",\n \"abn\": \"1234567890\",\n \"acn\": \"1234567890\",\n \"streetAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"mailingAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"dxAddress\": {\n \"number\": \"376\",\n \"exchange\": \"DX\",\n \"state\": \"NSW\"\n },\n \"phone\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"fax\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"status\": {\n \"status\": \"Active\",\n \"statusMessage\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json-patch+json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.smokeball.com/firm")
.header("x-api-key", "<api-key>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json-patch+json")
.body("{\n \"productId\": \"SMK001\",\n \"addOnIds\": [\n \"ADD01\",\n \"ADD003\"\n ],\n \"name\": \"Brown LLC\",\n \"email\": \"john.smith@law.com\",\n \"abn\": \"1234567890\",\n \"acn\": \"1234567890\",\n \"streetAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"mailingAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"dxAddress\": {\n \"number\": \"376\",\n \"exchange\": \"DX\",\n \"state\": \"NSW\"\n },\n \"phone\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"fax\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"status\": {\n \"status\": \"Active\",\n \"statusMessage\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.smokeball.com/firm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json-patch+json'
request.body = "{\n \"productId\": \"SMK001\",\n \"addOnIds\": [\n \"ADD01\",\n \"ADD003\"\n ],\n \"name\": \"Brown LLC\",\n \"email\": \"john.smith@law.com\",\n \"abn\": \"1234567890\",\n \"acn\": \"1234567890\",\n \"streetAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"mailingAddress\": {\n \"buildingLevel\": \"Level 1\",\n \"unitNumber\": \"10\",\n \"unitType\": \"Suite\",\n \"streetNumber\": \"100\",\n \"streetName\": \"Broad\",\n \"streetType\": \"Street\",\n \"addressLine1\": \"Level 1/10\",\n \"addressLine2\": \"100 Broad Street\",\n \"city\": \"Chicago\",\n \"state\": \"IL\",\n \"zipCode\": \"60606\",\n \"county\": \"\",\n \"locality\": \"\",\n \"country\": \"United States\",\n \"careOf\": \"\",\n \"poBoxType\": \"\",\n \"poBoxNumber\": \"\"\n },\n \"dxAddress\": {\n \"number\": \"376\",\n \"exchange\": \"DX\",\n \"state\": \"NSW\"\n },\n \"phone\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"fax\": {\n \"areaCode\": \"555\",\n \"number\": \"1234567\"\n },\n \"status\": {\n \"status\": \"Active\",\n \"statusMessage\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"href": "<string>",
"relation": "<string>",
"method": "GET"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Body
The product/tier the firm is subscribed to. Must be set when creating the firm and is optional when updating the firm.
The supported products are listed in order below, the identifier (in brackets) must be used.
-
Bill (SMK001)
-
Boost (SMK004)
-
Grow (SMK002)
-
Prosper + (SMK003)
Possible values: SMK001, SMK004, SMK002, SMK003
"SMK001"
The optional add-ons the firm is subscribed to. Must be specified with an accompanying productId.
The supported add-ons are listed below, the identifier (listed in brackets) must be used.
-
Intake (ADD001)
-
AutoTime (ADD003)
-
FamilyPro (ADD004)
-
Api (ADD005)
-
Workflows (ADD006)
-
PowerBI (ADD007)
-
Archie (ADD008)
-
SSO (ADD010)
Possible values: ADD01, ADD003, ADD004, ADD005, ADD006, ADD007, ADD008, ADD010
["ADD01", "ADD003"]
The name of the firm.
"Brown LLC"
The email of the firm.
Only supported in AU.
"john.smith@law.com"
Represents a different field depending on the region.
-
For AU: Australian Business Number (ABN) of the firm.
-
For UK: Value-added Tax Number (VAT) of the firm.
Only supported in AU and UK.
"1234567890"
Represents a different field depending on the region.
-
For AU: Australian Company Number (ACN) of the firm.
-
For UK: Company Registration Number (CRN) of the firm.
Only supported in AU and UK.
"1234567890"
Street address of the firm.
Show child attributes
Show child attributes
Mailing address of the firm.
Show child attributes
Show child attributes
DX address of the firm.
Only supported in AU.
Show child attributes
Show child attributes
Phone number of the firm.
Show child attributes
Show child attributes
Fax number of the firm.
Show child attributes
Show child attributes
The status of the firm.
Show child attributes
Show child attributes