API Reference - ASIC 361 Forms

ASIC 361 Forms 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.

ASIC 361 Forms

Endpoint Overview
  • URL
    /api/v1/asic-361-forms
  • Methods
    POST , GET
  • Agency
    Australian Securities and Investments Commission (ASIC)
  • Use this endpoint to create a 361 form application for cease acting as a registered agent for a company.

    All responses are delivered in JSON format.

Quick links: Application Request Status

ASIC 361 Form Request

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

/api/v1/asic-361-forms
POST
{
    "generalInformation": {
        "companyName": "MY COMPANY NAME PTY LTD",
        "acn": "123456789"
    },
    "signature": {
        "name": {
            "familyName": "DOE",
            "givenName1": "JOHN",
            "givenName2": "",
            "givenName3": ""
        },
        "role": "AGT",
        "date": "2021-07-01",
        "agentAuthorisedIndicator": true,
        "declaresTrueAndCorrectIndicator": true
    },
    "testTransmissionIndicator": false
}

ASIC 361 Form Response

{
    "response": {
        "requestId": 12239,
        "documentNumber": "2EXN69008",
        "documentUrl": ""
    },
    "errors": []
}

ASIC 361 Form Status Request & Response

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

/api/v1/asic-361-forms/{requestId}/status
GET
{
    "response": {
        "requestId": 12239,
        "status": "finished",
        "documentNumber": "2EXN69008",
        "info": {
            "companyName": "MY COMPANY NAME PTY LTD",
            "acn": "123456789"
        }
    },
    "errors": []
}