Skip to main content
PATCH
/
events
/
{event_id}
Update an event
curl --request PATCH \
  --url https://api.fpjs.io/v4/events/{event_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "linked_id": "<string>",
  "tags": {},
  "suspect": true
}
'

Authorizations

Authorization
string
header
required

Add your Secret API Key to the Authorization header using the standard Bearer format: Authorization: Bearer <secret_api_key>

Path Parameters

event_id
string
required

The unique event identifier.

Body

application/json
linked_id
string

Linked Id value to assign to the existing event

tags
object

A customer-provided value or an object that was sent with the identification request or updated later.

suspect
boolean

Suspect flag indicating observed suspicious or fraudulent event

Response

OK.