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.
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
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.