Skip to main content

Search sequence states

POST 

/sequence_states/_search

Search sequence states by contact_id and/or sequence_id. Note: only read_from_cache=false is supported at the moment. Support:

ProviderSearch By
Apollocontact_id only
Salesloftcontact_id, sequence_id
Outreachcontact_id, sequence_id

Request

Query Parameters

    include_raw_data boolean

    Whether to include raw data fetched from the 3rd party provider.

    Example: true
    read_from_cache boolean

    Whether to read from Supaglue's Managed Destination cache or to read directly from the provider.

    NOTE: read_from_cache=true requires you to have the object synced to the Supaglue Managed Destination.

    Example: true
    page_size string

    Number of results to return per page. (Max: 100)

    Example: 100
    cursor string

    The pagination cursor value

    Example: cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw

Header Parameters

    x-customer-id stringrequired

    The customer ID that uniquely identifies the customer in your application

    Example: my-customer-1
    x-provider-name stringrequired

    The provider name

    Example: salesforce

Body

required
    filter objectrequired

    If both contact_id and sequence_id are provided, the search will be performed as an AND search.

    contact_id string

    The ID of the contact to filter on.

    sequence_id string

    The ID of the sequence to filter on.

Responses

Paginated Sequence States

Schema
    pagination objectrequired
    next stringnullablerequired
    previous stringnullablerequired
    total_count number
    records object[]required
  • Array [
  • id stringrequired
    state stringnullablerequired
    contact_id stringnullablerequired
    mailbox_id stringnullablerequired
    user_id stringnullablerequired
    sequence_id stringnullablerequired
    created_at date-timenullablerequired
    updated_at date-timenullablerequired
    is_deleted booleanrequired
    last_modified_at date-timerequired
  • ]
Loading...