Chilkat Online Tools

C# / Braze Endpoints / Get Upcoming Scheduled Campaigns and Canvases

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Http http = new Chilkat.Http();
bool success;

Chilkat.JsonObject queryParams = new Chilkat.JsonObject();
queryParams.UpdateString("end_time","2018-09-01T00:00:00-04:00");

// Adds the "Authorization: Bearer {{api_key}}" header.
http.AuthToken = "{{api_key}}";

Chilkat.HttpResponse resp = http.QuickRequestParams("GET","https://rest.iad-01.braze.com/messages/scheduled_broadcasts",queryParams);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

Curl Command

curl -G -d "end_time=2018-09-01T00%3A00%3A00-04%3A00"
	-H "Authorization: Bearer {{api_key}}"
https://rest.iad-01.braze.com/messages/scheduled_broadcasts

Postman Collection Item JSON

{
  "name": "Get Upcoming Scheduled Campaigns and Canvases",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{api_key}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "https://{{instance_url}}/messages/scheduled_broadcasts?end_time=2018-09-01T00:00:00-04:00",
      "protocol": "https",
      "host": [
        "{{instance_url}}"
      ],
      "path": [
        "messages",
        "scheduled_broadcasts"
      ],
      "query": [
        {
          "key": "end_time",
          "value": "2018-09-01T00:00:00-04:00",
          "description": "(Required) String in ISO 8601 format\n\nEnd date of the range to retrieve upcoming scheduled Campaigns and Canvases. This is treated as midnight in UTC time by the API."
        }
      ]
    },
    "description": "You can view a JSON list of upcoming and scheduled Campaigns and Canvases using the following information and parameters. The endpoint will return information about scheduled Campaigns and entry Canvases between now and the designated end_time (ISO 8601 format) specified in the request. Daily, recurring messages will only appear once with their next occurrence. Results returned in this endpoint are only for Campaigns and Canvases created and scheduled in Braze.\n\n## Response\n\n```json\nContent-Type: application/json\nAuthorization: Bearer YOUR-REST-API-KEY\n{\n    \"scheduled_broadcasts\": [\n      # Example Canvas\n      {\n        \"name\" => String,\n        \"id\" => String,\n        \"type\" => \"Canvas\",\n        \"tags\" => [String tag names],\n        \"next_send_time\" => \"YYYY-MM-DD HH:mm:ss\" (may also include time zone if not local/intelligent delivery)\n        \"schedule_type\" => one of \"local_time_zones\", \"intelligent_delivery\", or the name of your company's time zone\n      },\n      # Example Campaign\n      {\n        \"name\" => String,\n        \"id\" => String,\n        \"type\" => \"Campaign\",\n        \"tags\" => [String tag names],\n        \"next_send_time\" => \"YYYY-MM-DD HH:mm:ss\" (may also include time zone if not local/intelligent delivery)\n        \"schedule_type\" => one of \"local_time_zones\", \"intelligent_delivery\", or the name of your company's time zone\n      },\n    ]\n}\n```"
  },
  "response": [
  ]
}