LogoLogo
Log inTalk to sales
GuidesAPI Reference
  • Introduction
    • Getting started
  • API Reference
  • Webhooks
Log inTalk to sales
WebhooksTransaction

Transaction Status Update

Occurs whenever a transaction status is updated manually on Flagright console

Headers

x-flagright-signaturestringRequired

An HMAC SHA256 signature generated using the webhook payload and a shared signing secret. This is then converted to a hex encoded string.

Payload

The payload of this webhook request is an object.
createdTimestampdoubleRequired>=315529200000<=4133890801000
Time at which the event was created. Measured in ms since the Unix epoch.
dataobjectRequired
idstringRequired
Unique identifier for the event
triggeredByenumRequired
Event triggered by a user or system
Allowed values:
typeenumRequired
Allowed values:

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Was this page helpful?
Previous

Case Open

Next
Built with
Payload
1{
2 "createdTimestamp": 1,
3 "data": {
4 "transactionId": "string",
5 "reasons": [
6 "string"
7 ],
8 "status": "ALLOW",
9 "comment": "string"
10 },
11 "id": "string",
12 "triggeredBy": "MANUAL",
13 "type": "TRANSACTION_STATUS_UPDATED"
14}