API Reference - ASIC Form RA71
ASIC Form RA71 v3.00
Request for Company Details
Create a RA71 form application for to request company details - raw structured data, PDF company statement or PDF annual statement. An API call to this endpoint will return a JSON response with the requst ID. If the application has been approved, an successful validation report will be returned together with the ASIC document number.
- 
                    identifier
 string / mandatory / maximum 17 characters
 Unique identifier for the request
- 
                    declaration
 array / mandatory
 Array with signing agent's details- 
                            family_name
 string / mandatory / maximum 30 characters
 Agent last name
- 
                            given_name1
 string / mandatory / maximum 20 characters
 Agent first name
- 
                            given_name2
 string / maximum 20 characters
 Agent middle name
- 
                            given_name3
 string / maximum 20 characters
 Agent middle name
- 
                            company_office
 string / mandatory
 Agent's role. Value:AGTas per Table 0011
- 
                            date_signed
 date / mandatory
 Signing date. Accepted formatYYYYMMDD
- 
                            declares_authorised
 string / mandatory
 Declares that the agent is authorised. Value:YorN
 
- 
                            
- 
                    company_id
 array / mandatory
 Array with company identification details and instruction- 
                            company_name
 string / mandatory / maximum 200 characters
 Full company name
- 
                            acn
 string / mandatory / maximum 9 digits
 Company ACN
- 
                            type
 string / mandatory
 Report type. Value:DATAfor raw structured data,ASorCSas per Table 0031
 
- 
                            
- 
                    test_transmission
 string
 Is this a test transmission? Value:YorN
POST to /api/v1/ra71
{  
    "identifier":"",
    "declaration":{  
        "family_name":"",
        "given_name1":"",
        "given_name2":"",
        "given_name3":"",
        "company_office":"",
        "date_signed":"",
        "declares_authorised":"",
    },
    "company_id":{  
        "company_name":"",
        "acn":"",
        "type":""
    },
    "test_transmission" : ""
}