Skip to content

Get a saved-match segment materialization

GET
/v1/integration-match-materializations/{materializationId}
curl --request GET \
--url https://api.infiniteaudience.ai/v1/integration-match-materializations/example \
--header 'Authorization: Bearer <token>'

Returns safe aggregate materialization status. Requires ‘discovery’ scope.

materializationId
required
string
/^imm_[a-f0-9]{40}$/

Saved-match materialization

Media typeapplication/json
object
materialization_id
required
string
collection_id
required
string
mode
required
string
Allowed values: new_segment add_to_segment
status
required
string
Allowed values: created processing completed failed
filters
required
object
providers
Array<string>
<= 20 items
connection_ids
Array<string>
<= 100 items
integration_run_ids
Array<string>
<= 100 items
source_kinds
Array<string>
<= 3 items
Allowed values: recurring batch file
boundary_at_from
string format: date-time
boundary_at_to
string format: date-time
source_cutoff_at
required
string format: date-time
target_segment_id
required
string
target_segment_name
required
string | null
target_segment_version
required
integer | null
>= 1
preview
required
One of:
object
source_observations
required
integer
unique_identities
required
integer
duplicate_observations
required
integer
expired_identities
required
integer
suppressed_identities
required
integer
already_present
required
integer
net_additions
required
integer
identity_count
required
integer | null
match_levels
required
Array<string>
Allowed values: I H D S A
failure_code
required
string | null
failure_message
required
string | null
created_at
required
string format: date-time
updated_at
required
string format: date-time
completed_at
required
string | null format: date-time
Example
{
"mode": "new_segment",
"status": "created",
"filters": {
"source_kinds": [
"recurring"
]
},
"match_levels": [
"I"
]
}

Missing or invalid Bearer token. Obtain one via POST /v1/auth/token. When a token was supplied but rejected, code distinguishes TOKEN_EXPIRED (the token’s lifetime has passed — request a new one via POST /v1/auth/token and retry) from TOKEN_INVALID (malformed or revoked — re-authenticate).

Media typeapplication/json
object
error
required

Stable machine-readable error code (e.g. INVALID_STATUS_TRANSITION, BILLING_INSUFFICIENT_BALANCE). Always present.

string
message

Human-readable explanation of the error.

string
code

Alternate machine-readable code — present on some endpoints as an alias for error for backward compatibility.

string
request_id

Opaque support/debug identifier when available.

string
key
additional properties
any
Examples
{
"error": "Unauthorized: Missing or invalid Authorization header"
}

Token is valid but lacks the required scope for this endpoint. Check the endpoint description for the required scope (discovery, purchase, or account).

Media typeapplication/json
object
error
required

Stable machine-readable error code (e.g. INVALID_STATUS_TRANSITION, BILLING_INSUFFICIENT_BALANCE). Always present.

string
message

Human-readable explanation of the error.

string
code

Alternate machine-readable code — present on some endpoints as an alias for error for backward compatibility.

string
request_id

Opaque support/debug identifier when available.

string
key
additional properties
any
Examples
Examplemissing_scope
{
"error": "SCOPE_REQUIRED",
"message": "This endpoint requires the purchase scope."
}

Resource not found or not accessible to the calling org.

Media typeapplication/json
object
error
required

Stable machine-readable error code (e.g. INVALID_STATUS_TRANSITION, BILLING_INSUFFICIENT_BALANCE). Always present.

string
message

Human-readable explanation of the error.

string
code

Alternate machine-readable code — present on some endpoints as an alias for error for backward compatibility.

string
request_id

Opaque support/debug identifier when available.

string
key
additional properties
any
Examples
Examplenot_found
{
"error": "Audience not found"
}