🖊️
Moderan API
  • Moderan API
  • Authentication
    • API key & Domain ID
  • Assets
    • Spaces
      • Space sizes
  • Contracts
    • Contracts
      • Contract rent and fees
      • Contract spaces
      • Contract persons
  • Turnover rent
    • Turnover
    • Turnover rent
  • Contacts
    • Organizations
    • Persons
  • Reports
    • Rent and fees calculation
    • Building performance
    • Property performance
    • Spaces
  • Costs API
    • Get Property-Building sets
    • Periods
    • Cost types
    • Bills
    • Contract terms
    • Get Costs for a period
    • Get Cost Rates for a period
    • Send Readings data
  • Classifiers
    • Billing names
    • Distribution Basis
Powered by GitBook
On this page

Was this helpful?

  1. Costs API

Periods

PreviousGet Property-Building setsNextCost types

Last updated 4 months ago

Was this helpful?

To get the COST_SET_ID see:

To get the periods, use following request

Get all Cost Periods for a Cost set

GET https://www.moderan.net/api/domains/DOMAIN_ID/properties/0/sets/COST_SET_ID/costperiods

This endpoint allows you to get all cost periods for a specific cost set from Moderan The id field received will be used in the future and we will call it PERIOD_ID

Path Parameters

Name
Type
Description

string

[
    {
        "id": 4798,
        "parentId": null,
        "building": null,
        "description": "This is november period",
        "startDate": "2020-11-01",
        "endDate": "2020-11-30",
        "hasLaterPeriods": false,
        "mainLocked": false,
        "locked": false,
        "automaticMeterLinking": false,
        "tenants": [],
        "createdDate": "2021-01-26T15:06:07.000+00:00"
    }
]
Get Property-Building sets