Get Draft Plan Activity Log
GET/api/amazon/:integrationInstance/draft-inbound-plans/:draft_inbound_plan/activity-log
Paginated activity log for a draft FBA inbound plan, rolling up activity recorded on the plan itself and on each of its line items into a single stream ordered newest first.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Each entry contains id, description, event (e.g. created, updated, deleted), subject_type (short type name of the record the event was recorded on — the plan or one of its line items), subject_id, properties (the recorded attribute changes, typically {attributes: {...}, old: {...}}), causer_name (the acting user, null for system events), and created_at (UTC datetime).
Query parameters: page (default 1), per_page (default 15), and filter[search] — a free-text search matched against the acting user's name, the event, the serialized property changes, and the subject type. Standard pagination metadata (current_page, last_page, per_page, total, links, ...) is included in the response.
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.