POST
/
farcaster
/
v2
/
notifications
/
seen
curl --request POST \
  --url https://build.wield.xyz/farcaster/v2/notifications/seen \
  --header 'API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "lastSeen": "2023-11-07T05:31:56Z"
}'
{
  "result": {
    "success": true
  },
  "source": "v2"
}

Headers

API-KEY
string
default:DEMO_REPLACE_WITH_FREE_API_KEY
required

Free API key needed to authorize requests, grab one at docs.wield.xyz

authorization
string
default:Bearer <token>
required

User authorization token, entered as Bearer <token>

Body

application/json
lastSeen
string

Response

200 - application/json
Notifications marked as seen successfully
result
object
source
string
Example:

"v2"