Bug
partiful events get <eventId> fails with a 404 for every event — both events I host and events I'm invited to.
$ partiful events get BiwCtA9kRMh8Od5TvuPq
{"status":"error","error":{"code":4,"type":"not_found","message":"API POST /getEvent failed","details":{"statusCode":404,"body":""}}}
Reproduced both through the CLI and via a direct /getEvent call in src/lib/http.js, using a freshly-refreshed valid token (the events list endpoint works fine with the same token). Points to a Partiful backend endpoint change or renamed method for /getEvent, not an auth problem.
Impact
Suspected cause / next step
/getEvent (POST, in events get and events clone's source-fetch) likely renamed or moved. Capture the current web app's network call for the event page and update the endpoint/method name. events clone may be affected too since it fetches the source via the same endpoint.
Repro
partiful auth status (confirm valid)
partiful events list → works, copy any id
partiful events get <id> → 404
Discovered while researching #56.
Bug
partiful events get <eventId>fails with a 404 for every event — both events I host and events I'm invited to.Reproduced both through the CLI and via a direct
/getEventcall insrc/lib/http.js, using a freshly-refreshed valid token (theevents listendpoint works fine with the same token). Points to a Partiful backend endpoint change or renamed method for/getEvent, not an auth problem.Impact
events getis fully non-functional.myRsvptoevents getin feat(events): expose my personal RSVP (myRsvp) in events list + fix isHost via JWT identity #56 (the list command is unaffected and can ship independently).Suspected cause / next step
/getEvent(POST, inevents getandevents clone's source-fetch) likely renamed or moved. Capture the current web app's network call for the event page and update the endpoint/method name.events clonemay be affected too since it fetches the source via the same endpoint.Repro
partiful auth status(confirm valid)partiful events list→ works, copy any idpartiful events get <id>→ 404Discovered while researching #56.