post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAllOffers
Get all offers for a given client
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAllOffers
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
offeringDetails | string | Get offering details as an array |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"offeringDetails": [
{
"issuerId": "596423",
"offeringId": "97618",
"issueName": "Lauren Test Offering",
"issueType": "Equity",
"targetAmount": "37000.000000",
"minAmount": "1.000000",
"maxAmount": "37000000.000000",
"unitPrice": "5.000000",
"totalShares": "7400000.000000",
"remainingShares": "7372547.453946",
"startDate": "02-11-2021",
"endDate": "02-14-2022",
"offeringStatus": "Pending",
"offeringText": "Offering Text",
"stampingText": "Watermark",
"createdDate": "2021-02-11 14:38:36",
"createdIPAddress": "97.117.119.58"
},
{
"issuerId": "596423",
"offeringId": "1126643",
"issueName": "Lauren Test Offering",
"issueType": "Equity",
"targetAmount": "100.000000",
"minAmount": "1.000000",
"maxAmount": "1000.000000",
"unitPrice": "1.000000",
"totalShares": "1000.000000",
"remainingShares": "1000.000000",
"startDate": "05-18-2022",
"endDate": "05-18-2023",
"offeringStatus": "closed",
"offeringText": "Test",
"stampingText": "Confidential",
"createdDate": "2022-05-18 22:26:51",
"createdIPAddress": "166.70.186.226"
},
{
"issuerId": "596423",
"offeringId": "1325825",
"issueName": "Orca Computers",
"issueType": "Equity",
"targetAmount": "100000.000000",
"minAmount": "1000.000000",
"maxAmount": "10000000.000000",
"unitPrice": "1000.000000",
"totalShares": "10000.000000",
"remainingShares": "10000.000000",
"startDate": "01-12-1999",
"endDate": "01-12-1999",
"offeringStatus": "Pending",
"offeringText": "Innovating Computers",
"stampingText": "Orca Computers",
"createdDate": "2023-01-12 18:12:19",
"createdIPAddress": "172.16.1.142"
}
]
}