Skip to main content
GET
/
coa
/
api
/
fixed-asset-automation
/
{id}
/
Retrieve Fixed Asset Automation
curl --request GET \
  --url https://api.meetcampfire.com/coa/api/fixed-asset-automation/{id}/ \
  --header 'Authorization: <api-key>'
import requests

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

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://api.meetcampfire.com/coa/api/fixed-asset-automation/{id}/', 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/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <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"
"net/http"
"io"
)

func main() {

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

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.meetcampfire.com/coa/api/fixed-asset-automation/{id}/")
.header("Authorization", "<api-key>")
.asString();
require 'uri'
require 'net/http'

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

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

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"

Path Parameters

id
integer
required

Response

200 - 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