Create asset

Create new Asset.

SecurityBearerAuth
Request
Request Body schema: application/json
required
entity_id
required
string

Unique identifier for the entity

asset_name
required
string

Name of the asset; can include dynamic placeholders

address_street
required
string

Street address of the asset

address_city
required
string

City where the asset is located

address_zip
required
string

ZIP or postal code

address_state
required
string

State or province

address_country
required
string

Country code (ISO format)

address_latitude
required
string

Latitude coordinate; can include dynamic placeholders

address_lonegitude
string

Longitude coordinate; can include dynamic placeholders

class_type_id
required
Array of integers

List of class type IDs associated with the asset

asset_serial_number
required
string

Serial number for the asset; can include dynamic placeholders

charging_type_id
required
integer

Identifier for the charging type

manufacturer_name
required
string

Name of the manufacturer

asset_status_id
string

Status ID of the asset

asset_fse_id
required
string

FSE ID

asset_fse_code
string

Code representing the FSE

asset_registration_upload_id
required
string

Unique registration upload ID; can include placeholders

asset_method_of_kwh
string

Method used to measure kWh

asset_charging_data_source
string

Source of charging data

reporting_method_id
required
string

ID of the reporting method

asset_lcfs_lff_id
string

LCFS (Low Carbon Fuel Standard) LFF ID

asset_lcfs_facility_name
string

Name of the LCFS facility

asset_start_date
required
string <date>

Asset start date in YYYY-MM-DD format

asset_end_date
required
string <date>

Asset end date in YYYY-MM-DD format

asset_rp_name
string

Reporting party or responsible person/entity name

electricity_source_id
required
integer

ID representing the source of electricity

Responses
201

Asset created successfully

400

Bad Request - Invalid input data

401

Unauthorized

500

Internal error

post/ct/assets
Request samples
application/json
{
  • "entity_id": "150",
  • "asset_name": "Test asset",
  • "address_street": "40270 GLENALDER PLACE",
  • "address_city": "Squamish",
  • "address_zip": "12345",
  • "address_state": "CA",
  • "address_country": "US",
  • "address_latitude": "55.391234",
  • "address_lonegitude": "-92.75123",
  • "class_type_id": [
    ],
  • "asset_serial_number": "2025410189123",
  • "charging_type_id": 3,
  • "manufacturer_name": "ABCD company",
  • "asset_status_id": "4",
  • "asset_fse_id": "FSE413000EE2",
  • "asset_fse_code": "Test FSE code",
  • "asset_registration_upload_id": "RUZ-781234",
  • "asset_method_of_kwh": "akhdkajh",
  • "asset_charging_data_source": "Test",
  • "reporting_method_id": "2",
  • "asset_lcfs_lff_id": "1",
  • "asset_lcfs_facility_name": "test",
  • "asset_start_date": "2021-07-01",
  • "asset_end_date": "2026-11-02",
  • "asset_rp_name": "test",
  • "electricity_source_id": 3
}
Response samples
application/json
{
  • "url": "/app/api/v1/ct/assets",
  • "date": "2025-08-30 10:02:28 EDT",
  • "code": 201,
  • "elements": 0,
  • "page": "1 of 1",
  • "data": {
    }
}