Preview

ProductIntegrationEventStatus is in Preview status and is subject to change without notice. For more information about Preview status, see the GraphQL API policy.

ProductIntegrationEventStatus

Computed processing status of an integration event.

This page contains

    Fields

    SUCCESS

    The ISV processed the event and returned a success result. Raw: is_success = true

    FAILED

    The ISV returned a failure result. Raw: is_success = false

    AWAITING_RESULT

    The ISV acknowledged the event asynchronously. Platform awaits callback to POST /api/integration/v1/events/{token}/result. Raw: is_consumed = false AND is_asynchronous = true AND is_success = null

    PENDING

    The event has been created but not yet dispatched to the ISV. Raw: is_consumed = false AND is_asynchronous != true AND is_success = null