API Reference - ASIC 362 Forms
ASIC 362 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.
Getting Started
API Documentation
Company Registration
ABN Registration
Company Deregistration
Business Name Registrations
Business Name Renewals
Registered Agent Cessation
Registered Agent Appointment
ASIC Account Transactions
References
ASIC 362 Forms
-
URL/api/v1/asic-362-forms
-
MethodsPOST , GET
-
AgencyAustralian Securities and Investments Commission (ASIC)
-
Use this endpoint to create a 362 form application for appointment or cessation of a registered agent by a company.
All responses are delivered in JSON format.
ASIC 362 Form Request
A POST request to this endpoint will return a JSON response with the request ID.
/api/v1/asic-362-forms
POST
{
"generalInformation": {
"companyName": "MY COMPANY NAME PTY LTD",
"acn": "123456789",
"type": "A"
},
"declaration": {
"name": {
"familyName": "DOE",
"givenName1": "JOHN",
"givenName2": "",
"givenName3": ""
},
"role": "DIR",
"date": "2021-07-01",
"declaresTrueAndCorrectIndicator": true
},
"testTransmissionIndicator": false
}
ASIC 362 Form Response
{
"response": {
"requestId": 12239,
"documentNumber": "2EXN69008",
"documentUrl": ""
},
"errors": []
}
ASIC 362 Form Status Request & Response
A GET request to this endpoint will return a JSON reponse.
/api/v1/asic-362-forms/{requestId}/status
GET
{
"response": {
"requestId": 12239,
"status": "finished",
"documentNumber": "2EXN69008",
"info": {
"companyName": "MY COMPANY NAME PTY LTD",
"acn": "123456789",
"type": "appointment"
}
},
"errors": []
}