CodableAIA Stacksona Company

Array Unique

Deduplicates arrays of primitives or objects by a selected key or full canonical value.

Run tool

Form input

Output JSON


          

Work steps

    Inputs

    NameTypeRequiredDescription
    itemsarrayYesItems
    keytextYesKey

    Outputs

    NameTypeDescription
    resultarrayResult
    removed_countintegerRemoved count
    workarrayWork

    Sample request

    {
      "items": [
        {
          "email": "a@x.com"
        },
        {
          "email": "a@x.com"
        },
        {
          "email": "b@x.com"
        }
      ],
      "key": "email"
    }