Housing association in Core

Introduction

It is possible to easily retrieve information of a case’s housing association (borettslag) if you have the case ID.

Retrieving a case’s housing association

To retrieve information of a case’s housing association, use the following endpoint:

GET /flow/api/Properties/{caseId}/HousingAssociation

You will need the following permissions:

Cases - Read

You should get a similar response to:

{
    "OrganizationNumber": "999888777",
    "NoContact": false,
    "SkipAmlMonitoring": false,
    "Id": 143804,
    "Guid": "214ba20a-4ecf-4d52-958f-dbca6d705fa7",
    "ChainId": 1,
    "BrokerCompanyId": 85981,
    "Name": "Borettslag 1",
    "Type": "HousingAssociation",
    "Functions": [
        "HousingAssociation"
    ],
    "Active": true,
    "IsPublic": false,
    "IsProfessional": false,
    "IdentificationNumber": "999888777",
    "CountryOfNationalityId": 1
}

Note that if a case does not have a housing association, the endpoint will return 204 No content.

AI Assistant (Beta)