Segment jobs endpoint
A segment job is an asynchronous process that creates an audience segment on demand. It references a segment definition, as well as any merge policies controlling how Real-Time Customer Profile merges overlapping attributes across your profile fragments. When a segment job successfully completes, you can gather various information about the segment, such as any errors that may have occurred during processing and the ultimate size of your audience.
This guide provides information to help you better understand segment jobs and includes sample API calls for performing basic actions using the API.
Getting started
The endpoints used in this guide are part of the ۶Ƶ Experience Platform Segmentation Service API. Before continuing, please review the getting started guide for important information that you need to know in order to successfully make calls to the API, including required headers and how to read example API calls.
Retrieve a list of segment jobs retrieve-list
You can retrieve a list of all segment jobs for your organization by making a GET request to the /segment/jobs
endpoint.
API format
The /segment/jobs
endpoint supports several query parameters to help filter your results. While these parameters are optional, their use is strongly recommended to help reduce expensive overhead. Making a call to this endpoint with no parameters will retrieve all export jobs available for your organization. Multiple parameters can be included, separated by ampersands (&
).
GET /segment/jobs
GET /segment/jobs?{QUERY_PARAMETERS}
Query parameters
table 0-row-3 1-row-3 2-row-3 3-row-3 4-row-3 5-row-3 | ||
---|---|---|
Parameter | Description | Example |
start |
Specifies the starting offset for the segment jobs returned. | start=1 |
limit |
Specifies the number of segment jobs returned per page. | limit=20 |
status |
Filters the results based on status. The supported values are NEW, QUEUED, PROCESSING, SUCCEEDED, FAILED, CANCELLING, CANCELLED | status=NEW |
sort |
Orders the segment jobs returned. Is written in the format `[attributeName]:[desc | asc]`. |
property |
Filters segment jobs and gets exact matches for the filter given. It can be written in either of the following formats:
|
property=segments~segmentId==workInUS |
Request
code language-shell |
---|
|
Response
A successful response returns HTTP status 200 with a list of segment jobs for the specified organization as JSON. A full list of all the segment definitions will be displayed within the children.segments
attribute.
code language-json |
---|
|
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 6-row-2 7-row-2 8-row-2 9-row-2 10-row-2 11-row-2 12-row-2 | |
---|---|
Property | Description |
id |
A system-generated read-only identifier for the segment job. |
status |
The current status for the segment job. Potential values for the status include “NEW”, “PROCESSING”, “CANCELLING”, “CANCELLED”, “FAILED”, and “SUCCEEDED”. |
segments |
An object that contains information about the segment definitions returned within the segment job. |
segments.segment.id |
The ID of the segment definition. |
segments.segment.expression |
An object that contains information about the segment definition’s expression, written in PQL. |
metrics |
An object that contains diagnostic information about the segment job. |
metrics.totalTime |
An object that contains information on the times the segmentation job started and ended, as well as the total time taken. |
metrics.profileSegmentationTime |
An object that contains information on the times the segmentation evaluation started and ended, as well as the total time taken. |
metrics.segmentProfileCounter |
The number of profiles qualified on a per segment basis. |
metrics.segmentedProfileByNamespaceCounter |
The number of profiles qualified for each identity namespace on a per segment definition basis. |
metrics.segmentProfileByStatusCounter |
The count of profiles for each statuses. The following three statuses are supported:
|
metrics.totalProfilesByMergePolicy |
The total number of merged profiles on a per merge policy basis. |
Create a new segment job create
You can create a new segment job by making a POST request to the /segment/jobs
endpoint and including the IDs of the segment definition in the request body.
API format
POST /segment/jobs
Request
code language-shell |
---|
|
table 0-row-2 1-row-2 | |
---|---|
Property | Description |
segmentId |
The ID of the segment definition that you want to evaluate. These segment definitions can belong to different merge policies. More information about segment definitions can be found in the segment definition endpoint guide. |
Response
A successful response returns HTTP status 200 with information about your newly created segment job.
code language-json |
---|
|
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 | |
---|---|
Property | Description |
id |
A system-generated read-only identifier for the newly created segment job. |
status |
The current status for the segment job. Since the segment job is newly created, the status will always be “NEW”. |
segments |
An object that contains information about the segment definitions that this segment job is running for. |
segments.segment.id |
The ID of the segment definition that you provided. |
segments.segment.expression |
An object that contains information about the segment definition’s expression, written in PQL. |
Retrieve a specific segment job get
You can retrieve detailed information about a specific segment job by making a GET request to the /segment/jobs
endpoint and providing the ID of the segment job you wish to retrieve in the request path.
API format
GET /segment/jobs/{SEGMENT_JOB_ID}
{SEGMENT_JOB_ID}
id
value of the segment job you want to retrieve.Request
code language-shell |
---|
|
Response
A successful response returns HTTP status 200 with detailed information about the specified segment job. A full list of all the segment definitions will be displayed within the children.segments
attribute.
code language-json |
---|
|
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 6-row-2 | |
---|---|
Property | Description |
id |
A system-generated read-only identifier for the segment job. |
status |
The current status for the segment job. Potential values for the status include “NEW”, “PROCESSING”, “CANCELLING”, “CANCELLED”, “FAILED”, and “SUCCEEDED”. |
segments |
An object that contains information about the segment definitions returned within the segment job. |
segments.segment.id |
The ID of the segment definition. |
segments.segment.expression |
An object that contains information about the segment definition’s expression, written in PQL. |
metrics |
An object that contains diagnostic information about the segment job. |
[!ENDTABS]
Bulk retrieve segment jobs bulk-get
You can retrieve detailed information about multiple segment jobs by making a POST request to the /segment/jobs/bulk-get
endpoint and providing the id
values of the segment jobs in the request body.
API format
POST /segment/jobs/bulk-get
Request
code language-shell |
---|
|
Response
A successful response returns HTTP status 207 with the requested segment jobs.
code language-json |
---|
|
table 0-row-2 1-row-2 2-row-2 3-row-2 4-row-2 5-row-2 | |
---|---|
Property | Description |
id |
A system-generated read-only identifier for the segment job. |
status |
The current status for the segment job. Potential values for the status include “NEW”, “PROCESSING”, “CANCELLING”, “CANCELLED”, “FAILED”, and “SUCCEEDED”. |
segments |
An object that contains information about the segment definitions returned within the segment job. |
segments.segment.id |
The ID of the segment definition. |
segments.segment.expression |
An object that contains information about the segment definition’s expression, written in PQL. |
Cancel or delete a specific segment job delete
You can delete a specific segment job by making a DELETE request to the /segment/jobs
endpoint and providing the ID of the segment job you wish to delete in the request path.
API format
DELETE /segment/jobs/{SEGMENT_JOB_ID}
{SEGMENT_JOB_ID}
id
value of the segment job you want to delete.Request
code language-shell |
---|
|
Response
A successful response returns HTTP status 204 with an empty response body.
Next steps
After reading this guide you now have a better understanding of how segment jobs work.