Items are borrowed from the Plaid terminology. Per their documentation:

"An item represents a login at a financial institution. A single end-user of your application might have accounts at different financial institutions, which means they would have multiple different Items."

While the LinkMoney API does not use the item system in its underlying data scheme, it still leverages the term in Plaid endpoints to help with transition from the Plaid platform.

Developers can use the Plaid Item endpoints to retrieve items from the LinkMoney API. As with Plaid, these Items will include only data associated with a login from a single institution.


Retrieve An Item.

Endpoint: POST /item/get

Find a single item and return its status.

Parameters

For the Request

Example Request

curl -X POST /item/get \\
	-H 'Content-Type: application/json' \\
	-H "Authorization: Bearer {access_token}" 

Response

See the Item Model for a full description of the schema.

{
  "item": {
    "error": null,
    "institution_id": "ins_109508",
    "item_id": "Ed6bjNrDLJfGvZWwnkQlfxwoNz54B5C97ejBr",
    "update_type": "background",
    "webhook": "/example/hook",
    "consent_expiration_time": null
  },
  "status": {
    "transactions": {
      "last_successful_update": "2019-02-15T15:52:39.000Z",
      "last_failed_update": "2019-01-22T04:32:00.000Z"
    },
    "last_webhook": {
      "sent_at": "2019-02-15T15:53:00.000Z",
      "code_sent": "DEFAULT_UPDATE"
    }
  },
  "request_id": "m8MDnv9okwxFNBV"
}

Remove an Item.

Endpoint: POST /item/remove

Removes a specific item. Note that if the user has accounts with other financial institutions, these will not be removed.

Parameters