Insolvency

Output

Attribute
Type
Description
Additional

array<object>

List of insolvency cases.

etag

string

The ETag of the resource.

status

string

Company insolvency status details.

Possible values are:

  • live-propopsed-transfer-from-gb

  • voluntary-arrangement

  • voluntary-arrangement-receivership

  • live-receiver-manager-on-at-least-one-charge

  • receiver-manager-or-administrative-receiver

  • receiver-manager

  • administrative-receiver

  • administration-order

  • receivership

  • in-administration

Insolvency Cases

Attribute
Type
Description
Additional

array<object>

The dates specific to the case.

object

The practitioners for the case.

Optional

notes

array<string>

Notes specific to the case.

Optional

number

string

The case number.

Optional

array<object>

The practitioners for the case.

type

string

The type of case.

Possible values are:

  • compulsory-liquidation

  • creditors-voluntary-liquidation

  • members-voluntary-liquidation

  • in-administration

  • corporate-voluntary-arrangement

  • corporate-voluntary-arrangement-moratorium

  • administration-order

  • receiver-manager

  • administrative-receiver

  • receivership

  • foreign-insolvency

  • moratorium

Case Dates

Attribute
Type
Description
Additional

date

date

The case date, described by date_type.

type

string

Describes what date is represented.

Possible values are:

  • instrumented-on

  • administration-started-on

  • administration-discharged-on

  • administration-ended-on

  • concluded-winding-up-on

  • petitioned-on

  • ordered-to-wind-up-on

  • due-to-be-dissolved-on

  • case-end-on

  • wound-up-on

  • voluntary-arrangement-started-on

  • voluntary-arrangement-ended-on

  • moratorium-started-on

  • moratorium-ended-on

  • declaration-solvent-on

Attribute
Type
Description
Additonal

charge

string

The link to the charge this case is lodged against.

Optional

Case Practitioners

Attribute
Type
Description
Additional

array<object>

The practitioners' address.

appointedOn

date

The date the practitioner was appointed on.

ceasedToActOn

date

The date the practitioner ceased to act for the case.

name

string

The name of the practitioner.

role

string

The type of role.

Optional. Possible values are:

  • final-liquidator

  • receiver

  • receiver-manager

  • proposed-liquidator

  • provisional-liquidator

  • administrative-receiver

  • practitioner

  • interim-liquidator

Practitioner Address

Attribute
Type
Description
Additional

addressLine1

string

The first line of the address.

addressLine2

string

The second line of the address.

Optional

country

string

The country.

Optional

locality

string

The locality. For example London.

Optional

postalCode

string

The postal code. For example CF14 3UZ.

Optional

region

string

The region. For example Surrey.

Optional

Case Type

Attribute
Type
Description

type

string

The type of case.

Example

{
    "cases": [
        {
            "dates": [
                {
                    "date": "2023-01-15",
                    "type": "Type A"
                },
                {
                    "date": "2023-02-20",
                    "type": "Type B"
                }
            ],
            "links": {
                "charge": "https://example.com/charge/123"
            },
            "notes": [
                "Note 1",
                "Note 2"
            ],
            "number": "CASE123",
            "practitioners": [
                {
                    "address": [
                        {
                            "addressLine1": "123 Main Street",
                            "addressLine2": "Suite 456",
                            "country": "United States",
                            "locality": "Cityville",
                            "postalCode": "12345",
                            "region": "Stateville"
                        }
                    ],
                    "appointedOn": "2023-01-10",
                    "ceasedToActOn": null,
                    "name": "John Doe",
                    "role": "Lawyer"
                }
            ],
            "type": "Legal Case"
        }
    ],
    "etag": "abc123",
    "status": "Active"
}

Last updated