🖊️
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
  • Gets all Organizations
  • Create an organization
  • Update an organization

Was this helpful?

  1. Contacts

Organizations

Gets all Organizations

GET https://www.moderan.net/api/domains/DOMAIN_ID/properties/0/organizationsapi

This endpoint allows you to get all Organizations from Moderan

Path Parameters

Name
Type
Description

DOMAIN_ID

String

Domain ID of client

Create an organization

POST https://www.moderan.net/api/domains/:domainId/propertysets/0/organizations

This endpoint allows you to create an Organizations

Path Parameters

Name
Type
Description

domainId

String

Domain ID of client

Update an organization

PUT https://www.moderan.net/api/domains/:domainId/propertysets/0/organizations/:organizationId

Path Parameters

Name
Type
Description

domainId

String

Domain ID of client

organizationId

String

Organization ID being changed

POST/PUT payload

{
   "name":"My organization",
   "accountingCode":"35197FA",
   "legalAddress":{
      "street":"Puiestee 33",
      "postalCode":"50511",
      "city":"Tallinn",
      "county":"Harjumaa",
      "country":"EE"
   },
   "postalAddress":{
      "street":"Puiestee 33",
      "postalCode":"50511",
      "city":"Tallinn",
      "county":"Harjumaa",
      "country":"EE"
   },
   "registryCode":"REG33",
   "emailGeneral":"admin@example.com",
   "emailInvoice":"invoice@example.com",
   "phone1":"53143335",
   "phone2":"53143335",
   "notes":"my notes",
   "industry":"Steel industry",
   "vat":"EE221095811323",
   "website":"www.google.com",
   "invoiceInEnglish":true,
}
PreviousTurnover rentNextPersons

Last updated 1 year ago

Was this helpful?