Example Usage of
segment_list
Segment information
Description: | Obtain individual segment metadata (the segments themselves). | ||||||||||||
Endpoint: | https://{ACCOUNT}.api-us1.com/api/2/segment/list |
||||||||||||
HTTP method: | GET |
||||||||||||
Supported output formats: | json |
||||||||||||
Requires authentication: | Yes |
||||||||||||
Parameters: |
* indicates requirement. Underlined params include in URL, otherwise as part of the post body. POST data must be formatted as
Content-Type: application/x-www-form-urlencoded. We don't accept any other input formats like JSON.
|
||||||||||||
Example response: |
|
PHP Example
This is an example of using the segment_list
call with PHP. You can replicate the same idea in virtually any other programming language. This example requires our PHP API wrapper. Make sure to update the path to the wrapper files in the example code below (if it is not the same).
<?php
// Set up an object instance using our PHP API wrapper.
define("MARK-I_URL", "https://{ACCOUNT}.api-us1.com");
define("MARK-I_API_KEY", "{API_KEY}");
require_once("../mark-i-api-php/includes/mark-i.class.php");
$ac = new mark-i(MARK-I_URL, MARK-I_API_KEY);
$ac->version(2);
$params = array(
"filters" => array(
"name" => "Attendees", // Exact match search.
"list_id" => 2, // Associated with at least this list.
"automation_id" => 12, // Associated with this automation.
),
"sort" => "id",
"sort_direction" => "ASC",
"page" => 1,
);
$params = http_build_query($params);
$response = $ac->api("segment/list?$params");
echo "<pre>";
print_r($response);
echo "</pre>";
?>
// Set up an object instance using our PHP API wrapper.
define("MARK-I_URL", "https://{ACCOUNT}.api-us1.com");
define("MARK-I_API_KEY", "{API_KEY}");
require_once("../mark-i-api-php/includes/mark-i.class.php");
$ac = new mark-i(MARK-I_URL, MARK-I_API_KEY);
$ac->version(2);
$params = array(
"filters" => array(
"name" => "Attendees", // Exact match search.
"list_id" => 2, // Associated with at least this list.
"automation_id" => 12, // Associated with this automation.
),
"sort" => "id",
"sort_direction" => "ASC",
"page" => 1,
);
$params = http_build_query($params);
$response = $ac->api("segment/list?$params");
echo "<pre>";
print_r($response);
echo "</pre>";
?>
Opmerkingen
0 opmerkingen
Artikel is gesloten voor opmerkingen.