Android / Broker API / Announcements
Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
http.put_BasicAuth(true);
http.put_Login("{{api_key}}");
http.put_Password("{{api_secret}}");
CkJsonObject queryParams = new CkJsonObject();
queryParams.UpdateString("ca_types","dividend,merger,spinoff,split");
queryParams.UpdateString("since","2021-12-01");
queryParams.UpdateString("until","2021-12-17");
CkHttpResponse resp = http.QuickRequestParams("GET","https://domain.com/v1/corporate_actions/announcements",queryParams);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
Curl Command
curl -G -d "ca_types=dividend,merger,spinoff,split"
-d "since=2021-12-01"
-d "until=2021-12-17"
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/corporate_actions/announcements
Postman Collection Item JSON
{
"name": "Announcements",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/corporate_actions/announcements?ca_types=dividend,merger,spinoff,split&since=2021-12-01&until=2021-12-17",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"corporate_actions",
"announcements"
],
"query": [
{
"key": "ca_types",
"value": "dividend,merger,spinoff,split",
"description": "A comma-delimited list of ENUM.CorporateActionType values"
},
{
"key": "since",
"value": "2021-12-01",
"description": "The start (inclusive) of the date range when searching corporate action announcements. This should follow the YYYY-MM-DD format. The date range is limited to 90 days."
},
{
"key": "until",
"value": "2021-12-17",
"description": "The end (inclusive) of the date range when searching corporate action announcements. This should follow the YYYY-MM-DD format. The date range is limited to 90 days."
},
{
"key": "symbol",
"value": "",
"description": "The symbol of the company initiating the announcement.",
"disabled": true
},
{
"key": "cusip",
"value": "",
"description": "The CUSIP of the company initiating the announcement.",
"disabled": true
},
{
"key": "date_type",
"value": "",
"description": "ENUM.DateType. Potential values are declaration_date, ex_date, record_date, or payable_date",
"disabled": true
}
]
}
},
"response": [
]
}