Is there a way to see the 'scope' that was used when uploading an entity?

We have bulk uploaded a lot of custom data but don't have a great way to keep track of the various scope used from different sources.

Best Answer

  • JSONJ
    JSONJ mod
    Answer ✓

    Although the metadata property _scope does not show up in the UI, you can query for it in J1 or via API. Try:

    Find * with _source!= ('integration-managed' or 'system-mapper') as a return a._scope, count(a) 
    There are other metadata properties that are not currently surfaced in the UI such as _integrationType, _integrationInstanceId, and _integrationDefinitionId which can be useful for other queries.

This Month's Leaders