Insolvency
Output
etag
string
The ETag of the resource.
status
string
Company insolvency status details.
Possible values are:
live-propopsed-transfer-from-gbvoluntary-arrangementvoluntary-arrangement-receivershiplive-receiver-manager-on-at-least-one-chargereceiver-manager-or-administrative-receiverreceiver-manageradministrative-receiveradministration-orderreceivershipin-administration
Insolvency Cases
notes
array<string>
Notes specific to the case.
Optional
number
string
The case number.
Optional
type
string
The type of case.
Possible values are:
compulsory-liquidationcreditors-voluntary-liquidationmembers-voluntary-liquidationin-administrationcorporate-voluntary-arrangementcorporate-voluntary-arrangement-moratoriumadministration-orderreceiver-manageradministrative-receiverreceivershipforeign-insolvencymoratorium
Case Dates
date
date
The case date, described by date_type.
type
string
Describes what date is represented.
Possible values are:
instrumented-onadministration-started-onadministration-discharged-onadministration-ended-onconcluded-winding-up-onpetitioned-onordered-to-wind-up-ondue-to-be-dissolved-oncase-end-onwound-up-onvoluntary-arrangement-started-onvoluntary-arrangement-ended-onmoratorium-started-onmoratorium-ended-ondeclaration-solvent-on
Case Links
charge
string
The link to the charge this case is lodged against.
Optional
Case Practitioners
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-liquidatorreceiverreceiver-managerproposed-liquidatorprovisional-liquidatoradministrative-receiverpractitionerinterim-liquidator
Practitioner Address
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
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"
}Was this helpful?