[GET] InstaDocs Returns InstaDocs data of a company for the given CIN. URI Structure /InstaDocs/{APIVersion}/{ResponseType}/CompanyCIN/{CIN}/{DataCode} Example: /InstaDocs/V1/json/CompanyCIN/U72501KA2016PTC092387/all Method: GET URI Params {APIVersion} : Version of API (v1) {ResponseType} : Response Type (JSON/XML) {CIN} : Proper CIN of a company (this can be obtained from companySearch API) {DataCode} : Whether to return full data or customized data(ALL/CUSTOM) Data Params None Headers user-key:{userIdentificationKey} Success Response: Code: 200 Error Response: Code: 404 NOT FOUND Content: { "Response": { "Status": "error", "Type": "invalid uri"} } OR Code: 401 UNAUTHORIZED Content: { "Response": { "Status": "error", "Type": "unauthenticated" } } Sample Call: $.ajax({ url: "/InstaDocs/V1/json/CompanyCIN/U72501KA2016PTC092387/all", headers: { 'user-key': 'xxxxxxxxxxxxxxxxxxxx' }, dataType: "json", type : "GET", success : function(r) { console.log(r); } });