API Reference - ASIC Ra52 Forms

ASIC Ra52 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 Ra52 Forms

Endpoint Overview
  • URL
    /api/v1/asic-ra52-forms
  • Methods
    POST , GET
  • Agency
    Australian Securities and Investments Commission (ASIC)
  • Use this endpoint to retrieve a report with all ASIC transactions for a specified period.

    All responses are delivered in JSON format.

Quick links: Application Request Status

ASIC Ra52 Form Request

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

/api/v1/asic-ra52-forms
POST
{
    "general": {
        "startDate": "2021-01-01",
        "endDate": "2021-06-30",
        "includePriorOutstandingIndicator": "123456789",
    },
    "testTransmissionIndicator": false
}

ASIC Ra52 Form Response

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

ASIC Ra52 Form Status Request & Response

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

/api/v1/asic-ra52-forms/{requestId}/status
GET
{
    "response": {
        "requestId": 12239,
        "status": "finished",
        "documentNumber": "2EXN69008",
        "info": {
            "companyName": "MY REGISTERED AGENT COMPANY PTY LTD",
            "acn": "123456789"
        },
        "records": [
            {
                "date": "2021-05-01",
                "legend": "Invoice",
                "status": "Outstanding",
                "value": "+49500",
                "outstandingValue": "+49500",
                "reference": "1EBC34566201C A",
                "allocationReference": "",
                "acn": "123456789"
            },
            {
                "date": "2021-05-01",
                "legend": "Direct Debit",
                "status": "Fully Allocated",
                "value": "-148500",
                "outstandingValue": "+000",
                "reference": "",
                "allocationReference": "",
                "acn": ""
            }
        ]
    },
    "errors": []
}