Skip to main content
POST
/
coa
/
api
/
fixed-asset-automation
/
Create Fixed Asset Automation
curl --request POST \
  --url https://api.meetcampfire.com/coa/api/fixed-asset-automation/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "entity": 123,
  "account": 123,
  "amount_threshold": 0,
  "asset_class": 123,
  "needs_review": true,
  "forward_looking": true
}
'
import requests

url = "https://api.meetcampfire.com/coa/api/fixed-asset-automation/"

payload = {
"name": "<string>",
"entity": 123,
"account": 123,
"amount_threshold": 0,
"asset_class": 123,
"needs_review": True,
"forward_looking": True
}
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({
name: '<string>',
entity: 123,
account: 123,
amount_threshold: 0,
asset_class: 123,
needs_review: true,
forward_looking: true
})
};

fetch('https://api.meetcampfire.com/coa/api/fixed-asset-automation/', 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.meetcampfire.com/coa/api/fixed-asset-automation/",
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([
'name' => '<string>',
'entity' => 123,
'account' => 123,
'amount_threshold' => 0,
'asset_class' => 123,
'needs_review' => true,
'forward_looking' => true
]),
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.meetcampfire.com/coa/api/fixed-asset-automation/"

payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"entity\": 123,\n \"account\": 123,\n \"amount_threshold\": 0,\n \"asset_class\": 123,\n \"needs_review\": true,\n \"forward_looking\": true\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.meetcampfire.com/coa/api/fixed-asset-automation/")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"entity\": 123,\n \"account\": 123,\n \"amount_threshold\": 0,\n \"asset_class\": 123,\n \"needs_review\": true,\n \"forward_looking\": true\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.meetcampfire.com/coa/api/fixed-asset-automation/")

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 \"name\": \"<string>\",\n \"entity\": 123,\n \"account\": 123,\n \"amount_threshold\": 0,\n \"asset_class\": 123,\n \"needs_review\": true,\n \"forward_looking\": true\n}"

response = http.request(request)
puts response.read_body
{
  "id": 123,
  "name": "<string>",
  "entity": 123,
  "entity_name": "<string>",
  "currency": "<string>",
  "account": 123,
  "account_name": "<string>",
  "account_number": "<string>",
  "amount_threshold": 0,
  "asset_class": 123,
  "asset_class_name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "last_modified_at": "2023-11-07T05:31:56Z",
  "needs_review": true,
  "forward_looking": true
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Body

Serializer for automation rules

name
string
required

Descriptive name for this rule

Maximum string length: 255
entity
integer
required

Entity this rule applies to (determines book currency)

account
integer
required

Create assets when transactions are posted to this account

amount_threshold
number<double>
required

Minimum transaction amount in book currency (materiality threshold)

Required range: -1000000000000000000 < x < 1000000000000000000
asset_class
integer
required

Asset class to use for created assets

needs_review
boolean

If true, queue assets for review before creation

forward_looking
boolean

Only apply to transactions created after this rule

Response

201 - application/json

Serializer for automation rules

id
integer
required
read-only
name
string
required

Descriptive name for this rule

Maximum string length: 255
entity
integer
required

Entity this rule applies to (determines book currency)

entity_name
string
required
read-only
currency
string
required
read-only

Book currency from entity (auto-populated)

account
integer
required

Create assets when transactions are posted to this account

account_name
string
required
read-only
account_number
string
required
read-only
amount_threshold
number<double>
required

Minimum transaction amount in book currency (materiality threshold)

Required range: -1000000000000000000 < x < 1000000000000000000
asset_class
integer
required

Asset class to use for created assets

asset_class_name
string
required
read-only
created_at
string<date-time>
required
read-only
last_modified_at
string<date-time>
required
read-only
needs_review
boolean

If true, queue assets for review before creation

forward_looking
boolean

Only apply to transactions created after this rule