Skip to main content

List Account Feed Links

GET 

/api/admin/portal/accounts/:customer/feed-keys

Lists every inventory-feed link issued against a location, with the buyer who holds it and when it was last pulled.

Not yet available to API tokens

This endpoint currently requires session authentication; Personal Access Token scope support is in progress.

Buyers generate these links themselves so they can pull their catalog from a scheduled job or a spreadsheet. This endpoint gives the merchant visibility into who holds one.

The key itself is never returned — it is stored as a SHA-256 hash. last_four identifies a link without revealing it.

Response fields:

  • id (integer): feed link id, used to revoke it.
  • last_four (string): trailing characters of the key, for identification.
  • buyer_id (integer), buyer_name (string|null), buyer_email (string|null): the buyer who holds the link.
  • created_at (string|null): when the link was issued.
  • last_used_at (string|null): most recent pull, or null if never used.
  • last_row_count (integer|null): number of rows returned by that pull.

Request

Responses

OK

Response Headers
    Content-Type