Transaction Limits Deduction

limits.deduction-created

This event occurs when a transaction reduces the transaction limits for a Business Account.

Payload Object

id

string (UUID)

Event ID.

type

string

Event type. Value is limits.deduction-created.

createdAt

string (date-time)

Date and time the event occurred.

data

object

Data related to the event.

businessAccountId

string (UUID)

ID of the Business Account.

transactionId

string (UUID)

Transaction ID.

value

number

Deduction amount.

currency

string

Currency for the deduction amount.

scopes

object

Deduction scopes.

scopeType

string

Scope type.

remainingLimits

object

Remaining limits.

limitType

string enum, values: daily, weekly, monthly

Type of transaction limit.

amount

number

Remaining amount for the transaction limit.

Sample Payload Object

				
					{
  "id": "8d5a34ea-a1a7-4b38-927f-62e1267bbba3",
  "type": "limits.deduction-created",
  "createdAt": "2025-04-10T21:10:53.857Z",
  "data": {
    "businessAccountId": "cc969b4b-5068-48f6-b806-f85d63914d9b",
    "transactionId": "1a877f71-44fd-4e17-beed-fb21150e7844",
    "value": 100,
    "currency": "USD",
    "scopes": [
      {
        "scopeType": "FA_KFA",
        "remainingLimits": [
          {
            "limitType": "DAILY",
            "amount": 10000
          }
        ]
      }
    ]
  }
}
				
			
Exit mobile version