API Reference - Business Name Renewals

Business Name Renewals 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.

Business Name Renewals

Endpoint Overview
  • URL
    /api/v1/business-name-renewals
  • Methods
    POST , GET
  • Agency
    Australian Securities and Investments Commission (ASIC)
  • Use this endpoint to lodge new business name renewal 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

Business Name Renewal Request

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

/api/v1/business-name-renewals
POST
{
    "generalInformation": {
        "businessName": "MY BUSINESS NAME",
        "accountNumber": "",
        "abn": "12345678901",
        "term": 1,
        "email": "service-address@my-business.com.au"
    },
    "applicant": {
        "individual": {
            "familyName": "DOE",
            "givenNames": "JOHN"
        },
        "declaresTrueAndCorrectIndicator": true
    },
    "testTransmissionIndicator": false
}
        

Business Name Renewal Response

{
    "requestId": 12239,
    "status": "new",
    "warnings": null,
    "errors": null
}

Business Name Renewal Status Request & Response

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

/api/v1/business-name-renewals/{requestId}/status
GET
{
    "requestId": 12239,
    "status": "finished",
    "documentNumber": "2EXN69008",
    "response": {
        "transactionDocumentUrl": "https://...",
        "businessNameNumber": "12345678901",
        "renewalTo": "2021-01-01",
    },
    "warnings": null,
    "errors": null
}