API Reference - Company Deregistrations

Company Deregistrations endpoint. The Business API suite exposes registration, lodgement, lookup and related functions that can be used for a variety of purposes. For the latest release information please check our release notes.

Company Deregistrations

Endpoint Overview
  • URL
    /api/v1/company-deregistrations
  • Methods
    POST , GET
  • Agency
    Australian Securities and Investments Commission (ASIC)
  • Use this endpoint to lodge new company de-registration applications. Use the helpers to check the status of an application or retrieve its entire transmission log.

    All responses are delivered in JSON format.

Quick links: Application Request Status Logs

Company Deregistration Request

A POST request to this endpoint will return a JSON response with the request ID.

/api/v1/company-deregistrations
POST
{
    "general": {
        "companyName": "MY DEMO COMPANY PTY LTD",
        "acn": "123456789",
        "paymentMethod": "INV"
    },
    "declarations": {
        "allMembersAgreeIndicator": true,
        "notCarryingOnBusinessIndicator": true,
        "assetsLessThan1000Indicator": true,
        "allFeesPaidIndicator": true,
        "noOutstandingLiabilitiesIndicator": true,
        "notPartyToLegalProceedingsIndicator": true
    },
    "applicant":{
        "individual": {
            "familyName": "",
            "givenName1": "",
            "givenName2": "",
            "givenName3": ""
        },
        "role": "",
        "organisation": {
            "name": "MY DEMO COMPANY PTY LTD",
            "acn": "123456789"
        },
        "address": {
            "careOf": "",
            "line2": "",
            "street": "",
            "locality": "",
            "state": "",
            "postcode": "",
            "country": ""
        }
    },
    "nominee":{
        "individual": {
            "familyName": "DOE",
            "givenName1": "JOHN",
            "givenName2": "",
            "givenName3": ""
        },
        "address": {
            "careOf": "",
            "line2": "UNIT 4",
            "street": "9 KENT STREET",
            "locality": "SYDNEY",
            "state": "NSW",
            "postcode": "2000",
            "country": ""
        }
    },
    "signatory":{
        "individual": {
            "familyName": "DOE",
            "givenName1": "JOHN",
            "givenName2": "",
            "givenName3": ""
        },
        "role": "DIR",
        "dateSigned": "20213006",
        "declaresTrueAndCorrectIndicator": true
    },
    "testTransmissionIndicator": false
}

Company Deregistration Response

{
    "response": {
        "requestId": 12239
    },
    "errors": []
}

Company Deregistration Status Request & Response

A GET request to this endpoint will return a JSON reponse.

/api/v1/company-deregistrations/{requestId}/status
GET
{
    "response": {
        "requestId": 12239,
        "status": "finished",
        "documentNumber": "2EXN69008",
        "info": {
            "companyName": "MY DEMO COMPANY PTY LTD",
            "acn": "612302303",
            "companyType": "APTY",
            "companyClass": "LMSH",
            "companySubClass": "PROP",
            "jurisdictionOfRegistration": "NSW",
            "dateOfDeregistration": "2021-06-30"
        }
    },
    "errors": []
}

Company Deregistration Log Entries Request & Response

A GET request to this endpoint will return a JSON reponse.

/api/v1/company-deregistrations/{requestId}/logs
GET
{
    "response": [
        {
            "requestId": 12239,
            "communication": {
                "form": "VALIDATION",
                "version": "",
                "reference": "",
                "values": {
                    "date": "30.06.2021",
                    "validationReport": "VALID_TP.169",
...